summaryrefslogtreecommitdiffstats
path: root/src/utils
diff options
context:
space:
mode:
authormongo <andmarti@gmail.com>2018-03-20 14:34:34 -0300
committermongo <andmarti@gmail.com>2018-03-20 14:34:34 -0300
commite9aaebe6658a0f86f84db8c60a8a6eddecc8d0e1 (patch)
tree4b28c723574349bdac3b40ebd8c0fa65192d5725 /src/utils
parentd724bfda24003ddbb94f6ea5b4407b63b8ab416b (diff)
issue #239
Diffstat (limited to 'src/utils')
-rwxr-xr-xsrc/utils/dictionary.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils/dictionary.c b/src/utils/dictionary.c
index a488c9c..3192b55 100755
--- a/src/utils/dictionary.c
+++ b/src/utils/dictionary.c
@@ -278,7 +278,8 @@ void parse_str(struct dictionary * d, char * str) {
}
if (c == '\0') break;
c = *++str;
- while (c != ' ' && c != '\0') {
+ //while (c != ' ' && c != '\0') {
+ while (c != '\0') {
add_char(value, c, strlen(value));
c = *++str;
}