aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-09-13 21:22:51 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2019-09-13 21:22:51 +0200
commit5a132a2f0fd4ad8bab2d2e2e153e58dfd6e5c42d (patch)
treede71ebcf41ec020b27c608d22cd9b967440c49ff
parent8e70b3ff980007d1843c38da8da7dfad36c64782 (diff)
downloadexchange-5a132a2f0fd4ad8bab2d2e2e153e58dfd6e5c42d.tar.gz
exchange-5a132a2f0fd4ad8bab2d2e2e153e58dfd6e5c42d.zip
to lower case..
-rw-r--r--src/auditor/taler-auditor-sign.c8
-rw-r--r--src/exchange-tools/taler-exchange-keyup.c8
2 files changed, 8 insertions, 8 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;
diff --git a/src/exchange-tools/taler-exchange-keyup.c b/src/exchange-tools/taler-exchange-keyup.c
index 8486f02cf..40dabf14b 100644
--- a/src/exchange-tools/taler-exchange-keyup.c
+++ b/src/exchange-tools/taler-exchange-keyup.c
@@ -882,7 +882,7 @@ exchange_keys_update_cointype (void *cls,
882 fprintf (stderr, 882 fprintf (stderr,
883 "Failed to write denomination key information to %s: %s\n", 883 "Failed to write denomination key information to %s: %s\n",
884 auditorrequestfile, 884 auditorrequestfile,
885 STRERROR (errno)); 885 strerror (errno));
886 *ret = GNUNET_SYSERR; 886 *ret = GNUNET_SYSERR;
887 GNUNET_CRYPTO_rsa_private_key_free ( 887 GNUNET_CRYPTO_rsa_private_key_free (
888 denomkey_issue.denom_priv.rsa_private_key); 888 denomkey_issue.denom_priv.rsa_private_key);
@@ -1321,14 +1321,14 @@ run (void *cls,
1321 } 1321 }
1322 if (NULL != auditorrequestfile) 1322 if (NULL != auditorrequestfile)
1323 { 1323 {
1324 auditor_output_file = FOPEN (auditorrequestfile, 1324 auditor_output_file = fopen (auditorrequestfile,
1325 "w"); 1325 "w");
1326 if (NULL == auditor_output_file) 1326 if (NULL == auditor_output_file)
1327 { 1327 {
1328 fprintf (stderr, 1328 fprintf (stderr,
1329 "Failed to open `%s' for writing: %s\n", 1329 "Failed to open `%s' for writing: %s\n",
1330 auditorrequestfile, 1330 auditorrequestfile,
1331 STRERROR (errno)); 1331 strerror (errno));
1332 global_ret = 1; 1332 global_ret = 1;
1333 return; 1333 return;
1334 } 1334 }
@@ -1477,7 +1477,7 @@ main (int argc,
1477 return 1; 1477 return 1;
1478 if (NULL != auditor_output_file) 1478 if (NULL != auditor_output_file)
1479 { 1479 {
1480 FCLOSE (auditor_output_file); 1480 fclose (auditor_output_file);
1481 auditor_output_file = NULL; 1481 auditor_output_file = NULL;
1482 } 1482 }
1483 return global_ret; 1483 return global_ret;