Diff for /libaitcfg/src/Attic/tools.c between versions 1.2.4.3 and 1.2.4.4

version 1.2.4.3, 2010/01/31 23:31:56 version 1.2.4.4, 2010/03/22 15:05:14
Line 23  inline int ltrim(u_char *psLine) Line 23  inline int ltrim(u_char *psLine)
         if (!pos)          if (!pos)
                 return 0;                  return 0;
   
        memmove(psLine, psLine + pos, strlen((char*) psLine) - pos);        memmove(psLine, psLine + pos, (strlen((char*) psLine) - pos) + 1);
         return pos;          return pos;
 }  }
   

Removed from v.1.2.4.3  
changed lines
  Added in v.1.2.4.4


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