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

Diff for /mandoc/manpath.c between version 1.25 and 1.29

version 1.25, 2015/05/07 12:08:13 version 1.29, 2015/11/07 17:58:55
Line 21 
Line 21 
 #include <sys/stat.h>  #include <sys/stat.h>
   
 #include <ctype.h>  #include <ctype.h>
   #if HAVE_ERR
   #include <err.h>
   #endif
 #include <limits.h>  #include <limits.h>
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
Line 29 
Line 32 
 #include "mandoc_aux.h"  #include "mandoc_aux.h"
 #include "manconf.h"  #include "manconf.h"
   
   #if !HAVE_MANPATH
 static  void     manconf_file(struct manconf *, const char *);  static  void     manconf_file(struct manconf *, const char *);
   #endif
 static  void     manpath_add(struct manpaths *, const char *, int);  static  void     manpath_add(struct manpaths *, const char *, int);
 static  void     manpath_parseline(struct manpaths *, char *, int);  static  void     manpath_parseline(struct manpaths *, char *, int);
   
Line 163  manpath_add(struct manpaths *dirs, const char *dir, in
Line 168  manpath_add(struct manpaths *dirs, const char *dir, in
         size_t           i;          size_t           i;
   
         if (NULL == (cp = realpath(dir, buf))) {          if (NULL == (cp = realpath(dir, buf))) {
                 if (complain) {                  if (complain)
                         fputs("manpath: ", stderr);                          warn("manpath: %s", dir);
                         perror(dir);  
                 }  
                 return;                  return;
         }          }
   
Line 175  manpath_add(struct manpaths *dirs, const char *dir, in
Line 178  manpath_add(struct manpaths *dirs, const char *dir, in
                         return;                          return;
   
         if (stat(cp, &sb) == -1) {          if (stat(cp, &sb) == -1) {
                 if (complain) {                  if (complain)
                         fputs("manpath: ", stderr);                          warn("manpath: %s", dir);
                         perror(dir);  
                 }  
                 return;                  return;
         }          }
   
Line 203  manconf_free(struct manconf *conf)
Line 204  manconf_free(struct manconf *conf)
         free(conf->output.style);          free(conf->output.style);
 }  }
   
   #if !HAVE_MANPATH
 static void  static void
 manconf_file(struct manconf *conf, const char *file)  manconf_file(struct manconf *conf, const char *file)
 {  {
Line 210  manconf_file(struct manconf *conf, const char *file)
Line 212  manconf_file(struct manconf *conf, const char *file)
         char manpath_default[] = MANPATH_DEFAULT;          char manpath_default[] = MANPATH_DEFAULT;
   
         FILE            *stream;          FILE            *stream;
         char            *cp, *ep;          char            *line, *cp, *ep;
         size_t           len, tok;          size_t           linesz, tok, toklen;
           ssize_t          linelen;
   
         if ((stream = fopen(file, "r")) == NULL)          if ((stream = fopen(file, "r")) == NULL)
                 goto out;                  goto out;
   
         while ((cp = fgetln(stream, &len)) != NULL) {          line = NULL;
                 ep = cp + len;          linesz = 0;
   
           while ((linelen = getline(&line, &linesz, stream)) != -1) {
                   cp = line;
                   ep = cp + linelen;
                 if (ep[-1] != '\n')                  if (ep[-1] != '\n')
                         break;                          break;
                 *--ep = '\0';                  *--ep = '\0';
Line 227  manconf_file(struct manconf *conf, const char *file)
Line 234  manconf_file(struct manconf *conf, const char *file)
                         continue;                          continue;
   
                 for (tok = 0; tok < sizeof(toks)/sizeof(toks[0]); tok++) {                  for (tok = 0; tok < sizeof(toks)/sizeof(toks[0]); tok++) {
                         len = strlen(toks[tok]);                          toklen = strlen(toks[tok]);
                         if (cp + len < ep &&                          if (cp + toklen < ep &&
                             isspace((unsigned char)cp[len]) &&                              isspace((unsigned char)cp[toklen]) &&
                             !strncmp(cp, toks[tok], len)) {                              strncmp(cp, toks[tok], toklen) == 0) {
                                 cp += len;                                  cp += toklen;
                                 while (isspace((unsigned char)*cp))                                  while (isspace((unsigned char)*cp))
                                         cp++;                                          cp++;
                                 break;                                  break;
Line 257  manconf_file(struct manconf *conf, const char *file)
Line 264  manconf_file(struct manconf *conf, const char *file)
                         break;                          break;
                 }                  }
         }          }
           free(line);
         fclose(stream);          fclose(stream);
   
 out:  out:
         if (*manpath_default != '\0')          if (*manpath_default != '\0')
                 manpath_parseline(&conf->manpath, manpath_default, 0);                  manpath_parseline(&conf->manpath, manpath_default, 0);
 }  }
   #endif
   
 void  void
 manconf_output(struct manoutput *conf, const char *cp)  manconf_output(struct manoutput *conf, const char *cp)

Legend:
Removed from v.1.25  
changed lines
  Added in v.1.29

CVSweb