summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2023-07-15 19:58:55 +0200
committerChristian Grothoff <christian@grothoff.org>2023-07-15 19:58:55 +0200
commit5b14fd547e0f1497d62cdc92c27af9ddf19b6105 (patch)
tree6234aa5194b45be33faba7ca212ab7ad5d0f6681
parentcd45ba408a791c7a95ad2d28eca222522d326268 (diff)
downloadexchange-5b14fd547e0f1497d62cdc92c27af9ddf19b6105.tar.gz
exchange-5b14fd547e0f1497d62cdc92c27af9ddf19b6105.tar.bz2
exchange-5b14fd547e0f1497d62cdc92c27af9ddf19b6105.zip
fix crash with -a option
-rw-r--r--src/exchange/taler-exchange-wirewatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exchange/taler-exchange-wirewatch.c b/src/exchange/taler-exchange-wirewatch.c
index 047042423..c27b07000 100644
--- a/src/exchange/taler-exchange-wirewatch.c
+++ b/src/exchange/taler-exchange-wirewatch.c
@@ -296,7 +296,7 @@ add_account_cb (void *cls,
if (! in_ai->credit_enabled)
return; /* not enabled for us, skip */
if ( (NULL != account_section) &&
- (0 != strcasecmp (ai->section_name,
+ (0 != strcasecmp (in_ai->section_name,
account_section)) )
return; /* not enabled for us, skip */
if (NULL != ai)