From 87265897e13fa7d0d6365b089f52b7ac1ca74a86 Mon Sep 17 00:00:00 2001 From: Zsolt Vasvari Date: Sat, 16 Feb 2008 23:51:58 +0000 Subject: [PATCH] Fixes copy/paste error in comment --- src/lib/util/astring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);