From 9322eca5d95353757f3b7b47f67054ddb7b14369 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Thu, 21 Apr 2011 21:03:25 +0200 Subject: [PATCH] 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) --- buffer.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/buffer.c b/buffer.c index 947df90c..e0a9a96c 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, ...)