# HG changeset patch # User Timo Sirainen # Date 1062167466 -10800 # Node ID 2a0220362d1b1787a914b104b9f3d548eeb26c1a # Parent 37881cedb70d9cc039bdd7872be6f682d13be58a Allow key=value without requiring space between key and '=' diff -r 37881cedb70d -r 2a0220362d1b src/lib-settings/settings.c --- a/src/lib-settings/settings.c Wed Aug 27 17:35:54 2003 +0300 +++ b/src/lib-settings/settings.c Fri Aug 29 17:31:06 2003 +0300 @@ -127,7 +127,7 @@ b) section_type section_name { c) } */ key = line; - while (!IS_WHITE(*line) && *line != '\0') + while (!IS_WHITE(*line) && *line != '\0' && *line != '=') line++; if (IS_WHITE(*line)) { *line++ = '\0';