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

Diff for /mandoc/manpath.c between version 1.33 and 1.35

version 1.33, 2017/02/10 15:45:28 version 1.35, 2017/07/01 09:47:30
Line 1 
Line 1 
 /*      $Id$    */  /*      $Id$ */
 /*  /*
  * Copyright (c) 2011, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>   * Copyright (c) 2011, 2014, 2015, 2017 Ingo Schwarze <schwarze@openbsd.org>
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>   * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
Line 91  manconf_parse(struct manconf *conf, const char *file,
Line 91  manconf_parse(struct manconf *conf, const char *file,
         manpath_parseline(&conf->manpath, defp, 0);          manpath_parseline(&conf->manpath, defp, 0);
 }  }
   
   void
   manpath_base(struct manpaths *dirs)
   {
           char path_base[] = MANPATH_BASE;
           manpath_parseline(dirs, path_base, 0);
   }
   
 /*  /*
  * Parse a FULL pathname from a colon-separated list of arrays.   * Parse a FULL pathname from a colon-separated list of arrays.
  */   */
Line 299  manconf_output(struct manoutput *conf, const char *cp,
Line 306  manconf_output(struct manoutput *conf, const char *cp,
                         mandoc_asprintf(&oldval, "%zu", conf->width);                          mandoc_asprintf(&oldval, "%zu", conf->width);
                         break;                          break;
                 }                  }
                 conf->width = strtonum(cp, 58, 1000, &errstr);                  conf->width = strtonum(cp, 1, 1000, &errstr);
                 if (errstr == NULL)                  if (errstr == NULL)
                         return 0;                          return 0;
                 warnx("-O width=%s is %s", cp, errstr);                  warnx("-O width=%s is %s", cp, errstr);

Legend:
Removed from v.1.33  
changed lines
  Added in v.1.35

CVSweb