Browse Source

fix a really stupid bug

Felix Fietkau 15 years ago
parent
commit
d65c93f0d0
1 changed files with 1 additions and 0 deletions
  1. 1 0
      util.c

+ 1 - 0
util.c

@@ -107,6 +107,7 @@ static inline bool uci_validate_text(const char *str)
 		if ((*str == '\r') || (*str == '\n') ||
 			((*str < 32) && (*str != '\t')))
 			return false;
+		str++;
 	}
 	return true;
 }