summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libalpm/util.c')
-rw-r--r--lib/libalpm/util.c3
1 files changed, 2 insertions, 1 deletions
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--;