From: Andreas Henriksson <andreas@fatal.se>
Subject: Include filename in syntax error logging

Say which file the syntax error is in, to make logged error message clear.

--- bandwidthd-2.0.1+cvs20050208.orig/conf.y
+++ bandwidthd-2.0.1+cvs20050208/conf.y
@@ -20,8 +20,8 @@
 
 void bdconfig_error(const char *str)
     {
-    fprintf(stderr, "Syntax Error \"%s\" on line %d\n", str, LineNo);
-	syslog(LOG_ERR, "Syntax Error \"%s\" on line %d", str, LineNo);
+    fprintf(stderr, "Syntax Error \"%s\" on line %d in bandwidthd.conf\n", str, LineNo);
+	syslog(LOG_ERR, "Syntax Error \"%s\" on line %d in bandwidthd.conf", str, LineNo);
 	exit(1);
     }
 
