summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-07-18 07:25:47 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2008-07-18 07:25:47 +0000
commitde6dbb5fe282eea69e5eaf0e922147a1a1ce5bf5 (patch)
tree50755eb7436d587a3d030511477f3961f3420e71
parent6cd276ba3fced973e5006ccabcb51d5734721914 (diff)
downloadopenvpn-de6dbb5fe282eea69e5eaf0e922147a1a1ce5bf5.tar.gz
openvpn-de6dbb5fe282eea69e5eaf0e922147a1a1ce5bf5.tar.xz
openvpn-de6dbb5fe282eea69e5eaf0e922147a1a1ce5bf5.zip
Fixed format string issue in read_inline_file,
used in the config file parser. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3078 e7ae566f-a301-0410-adde-c780ea21d3b5
-rw-r--r--options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/options.c b/options.c
index 287084e..197a058 100644
--- a/options.c
+++ b/options.c
@@ -2898,7 +2898,7 @@ read_inline_file (struct in_src *is, const char *close_tag, struct gc_arena *gc)
{
if (!strncmp (line, close_tag, strlen (close_tag)))
break;
- buf_printf (&buf, line);
+ buf_printf (&buf, "%s", line);
}
ret = string_alloc (BSTR (&buf), gc);
buf_clear (&buf);