X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=src%2Futil%2Fgnunet-scrypt.c;h=7999245789d440102916535eec68a9af105295eb;hb=fece22eebf8c8d54e79d05f748019e7234823828;hp=b6a9969da4eca99d373aee755632d13887a7eea6;hpb=3307360a2037ca08f56098596ef3f2d6cde0bc9c;p=oweals%2Fgnunet.git diff --git a/src/util/gnunet-scrypt.c b/src/util/gnunet-scrypt.c index b6a9969da..799924578 100644 --- a/src/util/gnunet-scrypt.c +++ b/src/util/gnunet-scrypt.c @@ -1,6 +1,6 @@ /* This file is part of GNUnet. - (C) 2014 Christian Grothoff (and other contributing authors) + Copyright (C) 2014 Christian Grothoff (and other contributing authors) GNUnet is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published @@ -14,8 +14,8 @@ You should have received a copy of the GNU General Public License along with GNUnet; see the file COPYING. If not, write to the - Free Software Foundation, Inc., 59 Temple Place - Suite 330, - Boston, MA 02111-1307, USA. + Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, + Boston, MA 02110-1301, USA. */ /** * @file util/gnunet-scrypt.c @@ -40,7 +40,7 @@ static struct GNUNET_CRYPTO_EddsaPublicKey pub; static uint64_t proof; -static GNUNET_SCHEDULER_TaskIdentifier proof_task; +static struct GNUNET_SCHEDULER_Task * proof_task; static const struct GNUNET_CONFIGURATION_Handle *cfg; @@ -128,7 +128,7 @@ find_proof (void *cls, return; } GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Got Proof of Work %llu\n", proof); - proof_task = GNUNET_SCHEDULER_NO_TASK; + proof_task = NULL; memcpy (&buf[sizeof (uint64_t)], &pub, sizeof (struct GNUNET_CRYPTO_EddsaPublicKey)); i = 0;