summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChad Loder <cloder@cvs.openbsd.org>2002-11-24 01:52:28 +0000
committerChad Loder <cloder@cvs.openbsd.org>2002-11-24 01:52:28 +0000
commitc242d4e54fd4069ec2ced2054200b67c69215eab (patch)
treedf7f8a25adb73e19883b4065485df1762765b8e3 /lib
parent36f09f194a738db22255bdf4ce6e480602080001 (diff)
Fix comment: s/trailing NULL/trailing NUL/, no code changes.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/gen/getcwd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/getcwd.c b/lib/libc/gen/getcwd.c
index c85fd5ead14..3d68d2ab410 100644
--- a/lib/libc/gen/getcwd.c
+++ b/lib/libc/gen/getcwd.c
@@ -32,7 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: getcwd.c,v 1.6 2000/07/19 15:25:13 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: getcwd.c,v 1.7 2002/11/24 01:52:27 cloder Exp $";
#endif /* LIBC_SCCS and not lint */
#include <sys/param.h>
@@ -132,7 +132,7 @@ getcwd(pt, size)
/*
* Build pointer to the parent directory, allocating memory
* as necessary. Max length is 3 for "../", the largest
- * possible component name, plus a trailing NULL.
+ * possible component name, plus a trailing NUL.
*/
if (bup + 3 + MAXNAMLEN + 1 >= eup) {
char *nup;