diff options
author | Marcello Stanisci <stanisci.m@gmail.com> | 2019-09-13 21:12:15 +0200 |
---|---|---|
committer | Marcello Stanisci <stanisci.m@gmail.com> | 2019-09-13 21:12:15 +0200 |
commit | 8e70b3ff980007d1843c38da8da7dfad36c64782 (patch) | |
tree | eb40730023b92382d054cf08e519e37bd30ac567 | |
parent | 4428469556a16490c47b41cb88e84113a6eb4146 (diff) | |
download | exchange-8e70b3ff980007d1843c38da8da7dfad36c64782.tar.gz exchange-8e70b3ff980007d1843c38da8da7dfad36c64782.zip |
UNLINK -> unlink
-rw-r--r-- | src/exchangedb/exchangedb_denomkeys.c | 2 | ||||
-rw-r--r-- | src/exchangedb/exchangedb_signkeys.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/exchangedb/exchangedb_denomkeys.c b/src/exchangedb/exchangedb_denomkeys.c index be2ee66b2..fad15cd54 100644 --- a/src/exchangedb/exchangedb_denomkeys.c +++ b/src/exchangedb/exchangedb_denomkeys.c | |||
@@ -164,7 +164,7 @@ TALER_EXCHANGEDB_denomination_key_read (const char *filename, | |||
164 | (GNUNET_TIME_absolute_ntoh ( | 164 | (GNUNET_TIME_absolute_ntoh ( |
165 | dki->issue.properties.expire_withdraw)).rel_value_us) | 165 | dki->issue.properties.expire_withdraw)).rel_value_us) |
166 | { | 166 | { |
167 | if (0 != UNLINK (filename)) | 167 | if (0 != unlink (filename)) |
168 | { | 168 | { |
169 | GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, | 169 | GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, |
170 | "unlink", | 170 | "unlink", |
diff --git a/src/exchangedb/exchangedb_signkeys.c b/src/exchangedb/exchangedb_signkeys.c index 10e4f7a65..0c46c1ff1 100644 --- a/src/exchangedb/exchangedb_signkeys.c +++ b/src/exchangedb/exchangedb_signkeys.c | |||
@@ -78,7 +78,7 @@ signkeys_iterate_dir_iter (void *cls, | |||
78 | if (0 == GNUNET_TIME_absolute_get_remaining | 78 | if (0 == GNUNET_TIME_absolute_get_remaining |
79 | (GNUNET_TIME_absolute_ntoh (issue.issue.expire)).rel_value_us) | 79 | (GNUNET_TIME_absolute_ntoh (issue.issue.expire)).rel_value_us) |
80 | { | 80 | { |
81 | if (0 != UNLINK (filename)) | 81 | if (0 != unlink (filename)) |
82 | { | 82 | { |
83 | GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, | 83 | GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, |
84 | "unlink", | 84 | "unlink", |