diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-08-29 01:24:21 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-08-29 01:24:21 +0200 |
commit | 5224f795916b2e5a12859bb0b2b6a0b6fbcda37f (patch) | |
tree | f51aab05ffd045fb337530946cad959cfbaa1562 /src/exchange-tools/key-helper.c | |
parent | 0846ab93bcbe606d34cc547904634244312e137d (diff) |
fix checks
Diffstat (limited to 'src/exchange-tools/key-helper.c')
-rw-r--r-- | src/exchange-tools/key-helper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exchange-tools/key-helper.c b/src/exchange-tools/key-helper.c index f711a1c28..0e3c0a2bb 100644 --- a/src/exchange-tools/key-helper.c +++ b/src/exchange-tools/key-helper.c @@ -65,7 +65,7 @@ get_and_check_master_key (const struct GNUNET_CONFIGURATION_Handle *cfg, ret = GNUNET_CRYPTO_eddsa_key_from_file (fn, GNUNET_YES, &master_priv->eddsa_priv); - if (GNUNET_SYSERR == ret) + if (GNUNET_OK != ret) { fprintf (stderr, "Failed to initialize master key from file `%s': %s\n", |