blob: 9548b3c0637beef2cdd0df308eb5b474236aa493 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001diff -up sblim-sfcb-1.4.9/control.c.orig sblim-sfcb-1.4.9/control.c
2--- sblim-sfcb-1.4.9/control.c.orig 2015-07-13 15:06:21.331660336 +0200
3+++ sblim-sfcb-1.4.9/control.c 2015-07-13 15:08:38.031308917 +0200
4@@ -83,7 +83,7 @@ long httpReqHandlerTimeout;
5 * Kindly null terminate, always, even if might overwrite
6 * the last char of the truncated string.
7 */
8-inline char *strncpy_kind(char *to, char *from, size_t size) {
9+char *strncpy_kind(char *to, char *from, size_t size) {
10 strncpy(to, from, size);
11 *(to + size - 1) = '\0';
12 return to;