diff options
Diffstat (limited to 'lib/libc/arch')
-rw-r--r-- | lib/libc/arch/i386/string/strcat.S | 4 | ||||
-rw-r--r-- | lib/libc/arch/i386/string/strcpy.S | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/arch/i386/string/strcat.S b/lib/libc/arch/i386/string/strcat.S index fb8008e8035..b22bebbe424 100644 --- a/lib/libc/arch/i386/string/strcat.S +++ b/lib/libc/arch/i386/string/strcat.S @@ -1,4 +1,4 @@ -/* $OpenBSD: strcat.S,v 1.9 2015/08/31 02:53:56 guenther Exp $ */ +/* $OpenBSD: strcat.S,v 1.10 2017/11/28 06:55:49 tb Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. @@ -9,7 +9,7 @@ #if defined(APIWARN) #APP .section .gnu.warning.strcat - .ascii "warning: strcat() is almost always misused, please use strlcat()" + .ascii "strcat() is almost always misused, please use strlcat()" #NO_APP #endif diff --git a/lib/libc/arch/i386/string/strcpy.S b/lib/libc/arch/i386/string/strcpy.S index f72990f8f0e..72448dadc64 100644 --- a/lib/libc/arch/i386/string/strcpy.S +++ b/lib/libc/arch/i386/string/strcpy.S @@ -1,4 +1,4 @@ -/* $OpenBSD: strcpy.S,v 1.9 2015/08/31 02:53:56 guenther Exp $ */ +/* $OpenBSD: strcpy.S,v 1.10 2017/11/28 06:55:49 tb Exp $ */ /* * Written by J.T. Conklin <jtc@netbsd.org>. * Public domain. @@ -9,7 +9,7 @@ #if defined(APIWARN) #APP .section .gnu.warning.strcpy - .ascii "warning: strcpy() is almost always misused, please use strlcpy()" + .ascii "strcpy() is almost always misused, please use strlcpy()" #NO_APP #endif |