Diff for /libaitcfg/src/aitcfg.c between versions 1.7.6.1 and 1.7.6.2

version 1.7.6.1, 2012/09/18 08:44:19 version 1.7.6.2, 2012/09/18 13:24:50
Line 54  int cfg_Errno; Line 54  int cfg_Errno;
 char cfg_Error[STRSIZ];  char cfg_Error[STRSIZ];
   
 inline int  inline int
   cfg_Write(FILE *f, char *fmt, ...)
   {
           int ret = 0;
           va_list lst;
   
           va_start(lst, fmt);
           ret = vfprintf(f, fmt, lst);
           va_end(lst);
   
           return ret;
   }
   
   inline int
 cfg_tree_cmp(struct tagCfg *a, struct tagCfg *b)  cfg_tree_cmp(struct tagCfg *a, struct tagCfg *b)
 {  {
         int ret;          int ret;

Removed from v.1.7.6.1  
changed lines
  Added in v.1.7.6.2


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