From bddea378b97088cdb303b4136f7e88f9130d0a2a Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Sat, 19 Mar 2005 18:15:31 +0000 Subject: Rework for fixed length strings --- lib/libalpm/util.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'lib/libalpm/util.c') diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c index 0c2e3360..053d7b98 100644 --- a/lib/libalpm/util.c +++ b/lib/libalpm/util.c @@ -144,13 +144,14 @@ char *_alpm_strtoupper(char *str) char *_alpm_strtrim(char *str) { char *pch = str; + while(isspace(*pch)) { pch++; } if(pch != str) { memmove(str, pch, (strlen(pch) + 1)); } - + pch = (char*)(str + (strlen(str) - 1)); while(isspace(*pch)) { pch--; -- cgit v1.2.3-54-g00ecf