summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2008-10-03 13:01:27 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2008-10-03 13:01:27 +0000
commit1041637169e85ed890aebb218313014d0cca5029 (patch)
tree0331ce1a733a52ed37367edc66ad9c50b4192873 /usr.sbin
parent9bde12d5dcaf48b0793cbac7f0fd499b4a3f76e8 (diff)
correct comment; a part of PR4184
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/config/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/config/main.c b/usr.sbin/config/main.c
index 1e8c5515248..0a9f027aeac 100644
--- a/usr.sbin/config/main.c
+++ b/usr.sbin/config/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.39 2007/03/20 19:42:14 jmc Exp $ */
+/* $OpenBSD: main.c,v 1.40 2008/10/03 13:01:26 deraadt Exp $ */
/* $NetBSD: main.c,v 1.22 1997/02/02 21:12:33 thorpej Exp $ */
/*
@@ -385,7 +385,7 @@ removeoption(const char *name)
(void)ht_remove(opttab, name);
low = emalloc(strlen(name) + 1);
- /* make lowercase, then add to select table */
+ /* make lowercase, then remove from select table */
for (n = name, p = low; (c = *n) != '\0'; n++)
*p++ = isupper(c) ? tolower(c) : c;
*p = 0;