summary refs log tree commit diff stats
path: root/src/common/dcc.c
diff options
context:
space:
mode:
authorPatrick Griffis <tingping@tingping.se>2018-09-01 16:32:37 -0400
committerPatrick Griffis <tingping@tingping.se>2018-09-01 16:35:48 -0400
commit18eae24acfedce4b5eab761edf23748642004ae3 (patch)
tree14bfe4ba677d993ff60c3df8aff6107201987a78 /src/common/dcc.c
parentc092af89a24d05b1d02858f3d84c38292e2347b5 (diff)
Fix new stringop-truncation warnings
Diffstat (limited to 'src/common/dcc.c')
-rw-r--r--src/common/dcc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/dcc.c b/src/common/dcc.c
index e26a2916..51f6d661 100644
--- a/src/common/dcc.c
+++ b/src/common/dcc.c
@@ -1006,7 +1006,7 @@ dcc_socks_proxy_traverse (GIOChannel *source, GIOCondition condition, struct DCC
 		sc.type = 1;
 		sc.port = htons (dcc->port);
 		sc.address = htonl (dcc->addr);
-		strncpy (sc.username, prefs.hex_irc_user_name, 9);
+		g_strlcpy (sc.username, prefs.hex_irc_user_name, sizeof (sc.username));
 		memcpy (proxy->buffer, &sc, sizeof (sc));
 		proxy->buffersize = 8 + strlen (sc.username) + 1;
 		proxy->bufferused = 0;