diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2014-07-09 17:08:22 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2014-07-09 17:08:22 +0000 |
commit | 7e6d7d55422f05e127a584de3cffba8ea7fe9921 (patch) | |
tree | 07de18d4250ac046c827697411c43284181d42ad /lib/libc/string | |
parent | 9c308a7ed9be7143b59c1d00fbdc16b65779618a (diff) |
rephrase the stpcpy() warning
new wording agreed by at least kettenis@ millert@ otto@
Diffstat (limited to 'lib/libc/string')
-rw-r--r-- | lib/libc/string/stpcpy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/stpcpy.c b/lib/libc/string/stpcpy.c index d3d61e0f149..d88afac3453 100644 --- a/lib/libc/string/stpcpy.c +++ b/lib/libc/string/stpcpy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: stpcpy.c,v 1.1 2012/01/17 02:48:01 guenther Exp $ */ +/* $OpenBSD: stpcpy.c,v 1.2 2014/07/09 17:08:21 naddy Exp $ */ /* * Copyright (c) 1988 Regents of the University of California. @@ -33,7 +33,7 @@ #if defined(APIWARN) __warn_references(stpcpy, - "warning: stpcpy() is dangerous GNU crap; don't use it"); + "warning: stpcpy() is dangerous; do not use it"); #endif char * |