aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sommerseth2011-04-21 21:03:25 +0200
committerDavid Sommerseth2011-04-21 21:03:25 +0200
commit14708eb69e377ae7edcbbdbd2842bcfbc43fb84a (patch)
treee375458617c310af375a721d185db263cd5f8682
parentdf5a4380c3931520d5fae2b18f0fc2e67a883aae (diff)
downloadopenvpn-14708eb69e377ae7edcbbdbd2842bcfbc43fb84a.zip
openvpn-14708eb69e377ae7edcbbdbd2842bcfbc43fb84a.tar.gz
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 <dazo@users.sourceforge.net>
-rw-r--r--buffer.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/buffer.c b/buffer.c
index e2f8caa..3fa0cd3 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, ...)