summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authormongo <andmarti@gmail.com>2018-03-22 14:11:37 -0300
committermongo <andmarti@gmail.com>2018-03-22 14:11:37 -0300
commit7890bdc0467d13e083b7226579fef2951ab02de4 (patch)
tree88abfbdaa53d18ce0e4260e050490fe14ed73a20 /src/utils
parent732f34281182b7ba92b7e15532a143ad8f2bb879 (diff)
work on issue 240
Diffstat (limited to 'src/utils')
-rwxr-xr-xsrc/utils/dictionary.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/dictionary.c b/src/utils/dictionary.c
index b97ccaa..68ba04b 100755
--- a/src/utils/dictionary.c
+++ b/src/utils/dictionary.c
@@ -280,7 +280,7 @@ void parse_str(struct dictionary * d, char * str, int blank_space) {
}
if (c == '\0') break;
c = *++str;
- while (c != ' ' && c != '\0') {
+ while (c != '\0') {
if (blank_space && c == ' ') break;
add_char(value, c, strlen(value));
c = *++str;