From ada64a730a3f11716840ed3a19c8715fdb72c155 Mon Sep 17 00:00:00 2001 From: millert <> Date: Sat, 6 Mar 1999 23:36:27 +0000 Subject: [PATCH] typo --- src/lib/libc/string/strcpy.3 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/libc/string/strcpy.3 b/src/lib/libc/string/strcpy.3 index 0e480420..626a06af 100644 --- a/src/lib/libc/string/strcpy.3 +++ b/src/lib/libc/string/strcpy.3 @@ -33,7 +33,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $OpenBSD: strcpy.3,v 1.4 1999/03/05 23:16:05 millert Exp $ +.\" $OpenBSD: strcpy.3,v 1.5 1999/03/06 23:36:27 millert Exp $ .\" .Dd June 29, 1991 .Dt STRCPY 3 @@ -127,7 +127,7 @@ guarantee to NUL-terminate the string itself, we must do this by hand. char buf[BUFSIZ]; (void)strncpy(buf, input, sizeof(buf) - 1); -buf[sizeof(buf) - 1] = '\\0'; +buf[sizeof(buf) - 1] = '\e0'; .Ed .Pp Note that @@ -136,7 +136,7 @@ is a better choice for this kind of operation. The equivalent using .Xr strlcpy 3 is simply: .Bd -literal -offset indent -(void)strncpy(buf, input, sizeof(buf)); +(void)strlcpy(buf, input, sizeof(buf)); .Ed .Sh SEE ALSO .Xr bcopy 3 ,