summaryrefslogtreecommitdiff
path: root/net-irc/dccserver/files/dccserver-0.5-include-bsd-string-header.patch
blob: 16474b64b82a338689cfcd19b555cd4caa06532c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
This uses strlcpy() from bsd/string.h. On non BSD system those headers are to find under
/usr/include/bsd/. See also man libbsd.

Bug: https://bugs.gentoo.org/875026
Bug: https://bugs.gentoo.org/861377

Pascal Jäger <pascal.jaeger@leimstift.de> (2022-11-29)

--- a/lib/dcc.c
+++ b/lib/dcc.c
@@ -37,7 +37,7 @@
 #endif /* HAVE_ERR_H */
 #include <errno.h>
 #include <stdlib.h>
-#include <string.h>
+#include <bsd/string.h>
 
 #include "dcc.h"
 #include "io.h"