summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-11-16 23:27:42 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-11-16 23:27:42 +0000
commit0a5a5f472e3bce59ca11235e9578ce197e3e7742 (patch)
treefd0bb489987ced1fa72b4124ddb2c07059e5b153 /lib/libc
parentbed4fc711c6be8c64e6dfe89c2911905a84d2039 (diff)
"of", not "on" (from Henric Jungheim)
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/string/strlcpy.34
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/strlcpy.3 b/lib/libc/string/strlcpy.3
index 13db956d227..c1e8a0d510b 100644
--- a/lib/libc/string/strlcpy.3
+++ b/lib/libc/string/strlcpy.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: strlcpy.3,v 1.10 2000/11/06 01:03:25 aaron Exp $
+.\" $OpenBSD: strlcpy.3,v 1.11 2000/11/16 23:27:41 angelos Exp $
.\"
.\" Copyright (c) 1998, 2000 Todd C. Miller <Todd.Miller@courtesan.com>
.\" All rights reserved.
@@ -143,7 +143,7 @@ if (strlcat(pname, file, sizeof(pname)) >= sizeof(pname))
.Ed
.Pp
Since we know how many characters we copied the first time, we can
-speed things up a bit by using a copy instead on an append:
+speed things up a bit by using a copy instead of an append:
.Bd -literal -offset indent
char *dir, *file, pname[MAXPATHLEN];
size_t n;