diff options
Diffstat (limited to 'net/wackamole/files/patch-config_gram.y')
-rw-r--r-- | net/wackamole/files/patch-config_gram.y | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/wackamole/files/patch-config_gram.y b/net/wackamole/files/patch-config_gram.y new file mode 100644 index 00000000000..33165689d5b --- /dev/null +++ b/net/wackamole/files/patch-config_gram.y @@ -0,0 +1,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; |