diff options
Diffstat (limited to 'src/auditor/taler-auditor-sign.c')
-rw-r--r-- | src/auditor/taler-auditor-sign.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/auditor/taler-auditor-sign.c b/src/auditor/taler-auditor-sign.c index 1bd7e908e..2c7fe8293 100644 --- a/src/auditor/taler-auditor-sign.c +++ b/src/auditor/taler-auditor-sign.c | |||
@@ -258,7 +258,7 @@ main (int argc, | |||
258 | fprintf (stderr, | 258 | fprintf (stderr, |
259 | "Failed to open file `%s': %s\n", | 259 | "Failed to open file `%s': %s\n", |
260 | exchange_request_file, | 260 | exchange_request_file, |
261 | STRERROR (errno)); | 261 | strerror (errno)); |
262 | GNUNET_free (eddsa_priv); | 262 | GNUNET_free (eddsa_priv); |
263 | return 1; | 263 | return 1; |
264 | } | 264 | } |
@@ -269,7 +269,7 @@ main (int argc, | |||
269 | fprintf (stderr, | 269 | fprintf (stderr, |
270 | "Failed to obtain input file size `%s': %s\n", | 270 | "Failed to obtain input file size `%s': %s\n", |
271 | exchange_request_file, | 271 | exchange_request_file, |
272 | STRERROR (errno)); | 272 | strerror (errno)); |
273 | GNUNET_DISK_file_close (fh); | 273 | GNUNET_DISK_file_close (fh); |
274 | GNUNET_free (eddsa_priv); | 274 | GNUNET_free (eddsa_priv); |
275 | return 1; | 275 | return 1; |
@@ -320,7 +320,7 @@ main (int argc, | |||
320 | fprintf (stderr, | 320 | fprintf (stderr, |
321 | "Failed to read input file `%s': %s\n", | 321 | "Failed to read input file `%s': %s\n", |
322 | exchange_request_file, | 322 | exchange_request_file, |
323 | STRERROR (errno)); | 323 | strerror (errno)); |
324 | TALER_AUDITORDB_plugin_unload (adb); | 324 | TALER_AUDITORDB_plugin_unload (adb); |
325 | GNUNET_DISK_file_close (fh); | 325 | GNUNET_DISK_file_close (fh); |
326 | GNUNET_free (sigs); | 326 | GNUNET_free (sigs); |
@@ -428,7 +428,7 @@ main (int argc, | |||
428 | fprintf (stderr, | 428 | fprintf (stderr, |
429 | "Failed to write to file `%s': %s\n", | 429 | "Failed to write to file `%s': %s\n", |
430 | output_file, | 430 | output_file, |
431 | STRERROR (errno)); | 431 | strerror (errno)); |
432 | GNUNET_free (sigs); | 432 | GNUNET_free (sigs); |
433 | GNUNET_free (dks); | 433 | GNUNET_free (dks); |
434 | return 1; | 434 | return 1; |