summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWim Vandeputte <wvdputte@cvs.openbsd.org>1998-11-06 04:33:17 +0000
committerWim Vandeputte <wvdputte@cvs.openbsd.org>1998-11-06 04:33:17 +0000
commit26ce0bacf20bcd7855dc98e8f75410c4029df116 (patch)
tree309bc2d8ead9c85312c0a4c49d9c50e1f0e4b7a4
parentc7ba9894bc98405517ce7b9b3d076986982f3e1d (diff)
add missing const to match prototype in string.h
-rw-r--r--lib/libc/string/strlcpy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/string/strlcpy.c b/lib/libc/string/strlcpy.c
index 1a604455991..2b6a166175c 100644
--- a/lib/libc/string/strlcpy.c
+++ b/lib/libc/string/strlcpy.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: strlcpy.c,v 1.1 1998/07/01 01:29:45 millert Exp $ */
+/* $OpenBSD: strlcpy.c,v 1.2 1998/11/06 04:33:16 wvdputte Exp $ */
/*
* Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
@@ -28,7 +28,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: strlcpy.c,v 1.1 1998/07/01 01:29:45 millert Exp $";
+static char *rcsid = "$OpenBSD: strlcpy.c,v 1.2 1998/11/06 04:33:16 wvdputte Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/types.h>
@@ -41,7 +41,7 @@ static char *rcsid = "$OpenBSD: strlcpy.c,v 1.1 1998/07/01 01:29:45 millert Exp
*/
size_t strlcpy(dst, src, siz)
char *dst;
- char *src;
+ const char *src;
size_t siz;
{
register char *d = dst;