summaryrefslogtreecommitdiff
path: root/modules/account/account.c
diff options
context:
space:
mode:
authorAlfred E. Heggestad <aeh@db.org>2016-07-24 18:08:02 +0200
committerAlfred E. Heggestad <aeh@db.org>2016-07-24 18:08:02 +0200
commitff3961ad2920ba674272b4f842f4456ed685a4a7 (patch)
tree4b54f90607d45857712e23bd451c1a627e89cdf4 /modules/account/account.c
parent713f55a1f9958222f85238bde40482b566cf040e (diff)
conf: add handler argument to line-handler
Diffstat (limited to 'modules/account/account.c')
-rw-r--r--modules/account/account.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/account/account.c b/modules/account/account.c
index 9cd4235..c70a216 100644
--- a/modules/account/account.c
+++ b/modules/account/account.c
@@ -104,9 +104,10 @@ static int account_write_template(const char *file)
*
* @return 0 if success, otherwise errorcode
*/
-static int line_handler(const struct pl *addr)
+static int line_handler(const struct pl *addr, void *arg)
{
char buf[512];
+ (void)arg;
(void)pl_strcpy(addr, buf, sizeof(buf));
@@ -143,7 +144,7 @@ static int account_read_file(void)
return err;
}
- err = conf_parse(file, line_handler);
+ err = conf_parse(file, line_handler, NULL);
if (err)
return err;