Changeset 432
- Timestamp:
 - Apr 29, 2013, 7:18:17 PM (13 years ago)
 - Location:
 - trunk
 - Files:
 - 
      
- 2 edited
 
- 
          
  docs/Changelog (modified) (1 diff)
 - 
          
  src/sh_readconf.c (modified) (4 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
trunk/docs/Changelog
r431 r432 1 3.0.12: 2 * Fix for bug in negated conditionals for config file 3 (reported by M. Ward) 4 1 5 3.0.11: 2 6 * Fix for compile error on HP-UX (reported by P. Alves)  - 
      
trunk/src/sh_readconf.c
r425 r432 199 199 p += 4; while (isspace((int)*p)) ++p; 200 200 negate = 0; 201 match = 1; 201 202 } 202 203 else if (0 == strncmp(p, _("!"), 1)) … … 204 205 ++p; while (isspace((int)*p)) ++p; 205 206 negate = 0; 207 match = 1; 206 208 } 207 209 … … 284 286 #endif 285 287 default: 286 match = 0;288 /* do nothing */; 287 289 } 288 290 return match; … … 608 610 } 609 611 612 /* fprintf(stderr, "%d %s\n", cond_excl, line); */ 613 610 614 /**************************************************** 611 615 *  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.