summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2016-09-20 13:11:39 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2016-09-20 13:11:39 +0200
commitb3c4803c55c7ba39827e6d3a87c34ee79bbae120 (patch)
tree1b12f22f625ece3c0dacbc74bff5aed933da8ca9
parent54862377d6fccfbba84b719608d72cb10bab0271 (diff)
downloadexchange-b3c4803c55c7ba39827e6d3a87c34ee79bbae120.tar.gz
exchange-b3c4803c55c7ba39827e6d3a87c34ee79bbae120.tar.bz2
exchange-b3c4803c55c7ba39827e6d3a87c34ee79bbae120.zip
renaming local variable
-rw-r--r--src/exchangedb/exchangedb_signkeys.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchangedb/exchangedb_signkeys.c b/src/exchangedb/exchangedb_signkeys.c
index 4ead23134..8273c84b8 100644
--- a/src/exchangedb/exchangedb_signkeys.c
+++ b/src/exchangedb/exchangedb_signkeys.c
@@ -125,13 +125,13 @@ static char *
get_signkey_file (const char *exchange_directory,
struct GNUNET_TIME_Absolute start)
{
- char *dir;
+ char *fn;
- GNUNET_asprintf (&dir,
+ GNUNET_asprintf (&fn,
"%s" DIR_SEPARATOR_STR TALER_EXCHANGEDB_DIR_SIGNING_KEYS DIR_SEPARATOR_STR "%llu",
exchange_directory,
(unsigned long long) start.abs_value_us);
- return dir;
+ return fn;
}