Diff for /libaitcfg/src/parse.c between versions 1.7 and 1.7.2.1

version 1.7, 2012/04/04 13:11:49 version 1.7.2.1, 2012/04/25 16:48:01
Line 133  int cfgReadConfig(FILE *f, cfg_root_t * __restrict cfg Line 133  int cfgReadConfig(FILE *f, cfg_root_t * __restrict cfg
                 }                  }
   
                 /* check for continues line */                  /* check for continues line */
                psAttr = line + strlen(line) - 1;                psAttr = line + (*line ? strlen(line) : 1) - 1;
                 if (*psAttr == '\\') {                  if (*psAttr == '\\') {
                         *psAttr = 0;                          *psAttr = 0;
                         flg = 1;                          flg = 1;

Removed from v.1.7  
changed lines
  Added in v.1.7.2.1


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>