summaryrefslogtreecommitdiffstats
path: root/src/utils/dictionary.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/dictionary.c')
-rwxr-xr-xsrc/utils/dictionary.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/dictionary.c b/src/utils/dictionary.c
index 3192b55..af3305d 100755
--- a/src/utils/dictionary.c
+++ b/src/utils/dictionary.c
@@ -278,8 +278,8 @@ void parse_str(struct dictionary * d, char * str) {
}
if (c == '\0') break;
c = *++str;
- //while (c != ' ' && c != '\0') {
- while (c != '\0') {
+ while (c != ' ' && c != '\0') {
+ //while (c != '\0') {
add_char(value, c, strlen(value));
c = *++str;
}