[BACK]Return to manpath.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/manpath.c between version 1.12 and 1.14

version 1.12, 2013/11/21 01:49:18 version 1.14, 2014/04/20 16:46:05
Line 26 
Line 26 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
 #include "mandoc.h"  #include "mandoc_aux.h"
 #include "manpath.h"  #include "manpath.h"
   
 #define MAN_CONF_FILE   "/etc/man.conf"  #define MAN_CONF_FILE   "/etc/man.conf"
Line 169  manpath_add(struct manpaths *dirs, const char *dir)
Line 169  manpath_add(struct manpaths *dirs, const char *dir)
                 if (0 == strcmp(dirs->paths[i], dir))                  if (0 == strcmp(dirs->paths[i], dir))
                         return;                          return;
   
         dirs->paths = mandoc_realloc          dirs->paths = mandoc_realloc(dirs->paths,
                 (dirs->paths,              (dirs->sz + 1) * sizeof(char *));
                  (dirs->sz + 1) * sizeof(char *));  
   
         dirs->paths[dirs->sz++] = mandoc_strdup(cp);          dirs->paths[dirs->sz++] = mandoc_strdup(cp);
 }  }

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.14

CVSweb