diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-10-31 03:49:25 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2005-10-31 03:49:25 +0000 |
commit | 79df31c85ab06d24f9443e370160cc9c44b88b93 (patch) | |
tree | b3f92140b9c210485c2c0caad578c844791f3bcb /options.c | |
parent | Windows reliability changes: (diff) | |
download | openvpn-79df31c85ab06d24f9443e370160cc9c44b88b93.tar.xz |
svn merge -r 734:737 $SO/trunk/openvpn
Security fixes from 2.0.3
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@740 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2274,7 +2274,7 @@ foreign_option (struct options *o, char *argv[], int len, struct env_set *es) { if (!first) buf_printf (&value, " "); - buf_printf (&value, argv[i]); + buf_printf (&value, "%s", argv[i]); first = false; } } |