From: David Sommerseth Date: Thu, 21 Apr 2011 19:03:25 +0000 (+0200) Subject: Add a simple comment regarding openvpn_snprintf() is duplicated X-Git-Tag: v2.2.0~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9322eca5d95353757f3b7b47f67054ddb7b14369;p=thirdparty%2Fopenvpn.git Add a simple comment regarding openvpn_snprintf() is duplicated Commit df5a4380c3931520d5fae2b18f0fc2e67a883aae copies this function from buffer.c to service-win32/openvpnserv.c. Any changes on either places should be done in both implementations. Signed-off-by: David Sommerseth (cherry picked from commit 14708eb69e377ae7edcbbdbd2842bcfbc43fb84a) --- diff --git a/buffer.c b/buffer.c index 947df90c6..e0a9a96ce 100644 --- a/buffer.c +++ b/buffer.c @@ -217,6 +217,9 @@ buf_printf (struct buffer *buf, const char *format, ...) /* * This is necessary due to certain buggy implementations of snprintf, * that don't guarantee null termination for size > 0. + * + * This function is duplicated into service-win32/openvpnserv.c + * Any modifications here should be done to the other place as well. */ int openvpn_snprintf(char *str, size_t size, const char *format, ...)