blob: 33165689d5b9c983d2dcf638427b67d5ed314ee2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- config_gram.y.orig 2011-05-12 02:54:26.000000000 +0200
+++ config_gram.y 2011-05-12 02:55:18.000000000 +0200
@@ -106,7 +106,7 @@
SPIT("Setting Group: %s\n", Spread_group); }
| W_LOG W_EQUALS W_STRING
| W_CONTROL W_EQUALS W_STRING
- { snprintf(control_socket, MAXPATHLEN, $3.string); }
+ { snprintf(control_socket, MAXPATHLEN, "%s", $3.string); }
| W_MATURE W_EQUALS W_TIMEINTERVAL
{ Maturity_timeout.sec = $3.tv.tv_sec;
Maturity_timeout.usec = 0;
|