summaryrefslogtreecommitdiff
path: root/emulators/nonpareil/files/patch-src_util.c
diff options
context:
space:
mode:
authorSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2019-10-02 19:51:23 +0000
committerSunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>2019-10-02 19:51:23 +0000
commit533cbc94d8036a5a409c650df216cff1d4817813 (patch)
treeb183d02ece363a552d85b6836277e6240d1540a7 /emulators/nonpareil/files/patch-src_util.c
parentCosmetic change (diff)
Fix build with scons 3.1.1
PR: 240584 Exp-run by: antoine
Diffstat (limited to 'emulators/nonpareil/files/patch-src_util.c')
-rw-r--r--emulators/nonpareil/files/patch-src_util.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/emulators/nonpareil/files/patch-src_util.c b/emulators/nonpareil/files/patch-src_util.c
index dc4fe477d15a..b2de6dbf3909 100644
--- a/emulators/nonpareil/files/patch-src_util.c
+++ b/emulators/nonpareil/files/patch-src_util.c
@@ -1,6 +1,6 @@
---- src.orig/util.c Mon Jul 24 14:32:21 2006
-+++ src/util.c Mon Jul 24 14:34:48 2006
-@@ -130,6 +130,7 @@
+--- src/util.c.orig 2008-08-24 00:37:18 UTC
++++ src/util.c
+@@ -130,6 +130,7 @@ void realloc_strcpy (char **dest, char *
}
@@ -8,7 +8,7 @@
// strlcpy will copy as much of src into dest as it can, up to one less than
// the maximum length of dest specified by the argument l. Unlike strncpy(),
// strlcpy() will always leave dest NULL-terminated on return.
-@@ -139,6 +140,7 @@
+@@ -139,6 +140,7 @@ char *strlcpy (char *dest, const char *s
dest [l - 1] = '\0';
return dest;
}