aboutsummaryrefslogtreecommitdiff
path: root/src/librc-strlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/librc-strlist.c')
-rw-r--r--src/librc-strlist.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/librc-strlist.c b/src/librc-strlist.c
index 0f3225e9..507f269c 100644
--- a/src/librc-strlist.c
+++ b/src/librc-strlist.c
@@ -114,24 +114,24 @@ bool rc_strlist_delete (char ***list, const char *item)
{
char **lst = *list;
int i = 0;
- bool retval = false;
if (!lst || ! item)
return (false);
- while (lst[i])
- if (! strcmp (lst[i], item)) {
+ while (lst[i]) {
+ if (strcmp (lst[i], item) == 0) {
free (lst[i]);
- retval = true;
do {
lst[i] = lst[i + 1];
i++;
} while (lst[i]);
+ return (true);
}
+ i++;
+ }
- if (! retval)
- errno = ENOENT;
- return (retval);
+ errno = ENOENT;
+ return (false);
}
librc_hidden_def(rc_strlist_delete)