From: Ondrej Filip Date: Mon, 9 Apr 2012 12:19:28 +0000 (+0200) Subject: Small bugfix in error message related to reconfiguration. X-Git-Tag: v1.3.8~9^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ed7c4b0cd530126b9a794f817f5d1d93556a1bce;p=thirdparty%2Fbird.git Small bugfix in error message related to reconfiguration. --- diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c index 9219da9b6..dfe0b89c1 100644 --- a/sysdep/unix/main.c +++ b/sysdep/unix/main.c @@ -269,7 +269,7 @@ cmd_reconfig(char *name, int type) if (!unix_read_config(&conf, name)) { if (conf->err_msg) - cli_msg(8002, "%s, line %d: %s", name, conf->err_lino, conf->err_msg); + cli_msg(8002, "%s, line %d: %s", conf->err_file_name, conf->err_lino, conf->err_msg); else cli_msg(8002, "%s: %m", name); config_free(conf);