diff options
author | 2008-02-16 23:51:58 +0000 | |
---|---|---|
committer | 2008-02-16 23:51:58 +0000 | |
commit | 87265897e13fa7d0d6365b089f52b7ac1ca74a86 (patch) | |
tree | f5f343da26b232aabd378075b59b37bcd075de5b /src/lib | |
parent | 48390440635f95ee4ec4d958a65e720c4f1f038f (diff) |
Fixes copy/paste error in comment
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/util/astring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/astring.c b/src/lib/util/astring.c index 1e7da3487b6..d6956121ef9 100644 --- a/src/lib/util/astring.c +++ b/src/lib/util/astring.c @@ -566,7 +566,7 @@ astring *astring_tolower(astring *str) { char *text; - /* just toupper() on all characters */ + /* just tolower() on all characters */ for (text = str->text; *text != 0; text++) *text = tolower(*text); |