summaryrefslogtreecommitdiff
path: root/lib/libc/yp
AgeCommit message (Expand)Author
2016-05-30Stop publicly declaring _yp_dobind() and struct dom_binding, closing outPhilip Guenther
2016-05-29_yp_bind(), _ypbindlist, _yp_domain, and _yplib_timeout are no longerPhilip Guenther
2016-03-30for some time now mandoc has not required MLINKS to functionJason McIntyre
2015-11-26remove the "YP server for domain %s not responding, still trying" code.Theo de Raadt
2015-11-10update NAME section to include all documented functions,Jason McIntyre
2015-09-28xdr_ypresp_all_seq() does not need to be exported by libc, we can make itTheo de Raadt
2015-09-14Wrap _yp_check() and _yp_unbind() so internal calls go direct and they're weakPhilip Guenther
2015-09-13Wrap <rpcsvc/ypclnt.h> so that calls go direct and the symbols are all weakPhilip Guenther
2015-09-11Put a private copy of the ypresp_allfn/ypresp_data interface into ypservTheo de Raadt
2015-09-05rather than assuming stderr is alive, open + dprintf to /dev/ttyTheo de Raadt
2015-08-20All these files include <stdlib.h>, so do not need to castTheo de Raadt
2015-01-16Move to the <limits.h> universe.Theo de Raadt
2015-01-14change _yp_domain[] to HOST_NAME_MAX+1, and re-arrange those who includeTheo de Raadt
2014-09-08obvious cases of missing .An;Ingo Schwarze
2014-07-13add missing whitespace between .Fa macro argument and trailing punctuationIngo Schwarze
2014-05-25use calloc, from Benjamin BaierTed Unangst
2014-01-21obvious .Pa fixes; found with mandocdb(8)Ingo Schwarze
2013-09-30Use PATH_MAX, NAME_MAX and LOGIN_NAME_MAX not MAXPATHNAMELEN,Todd C. Miller
2013-06-05Use the fancy .In macro for includes. From Jan Klemkow. ok jmc schwarzeTed Unangst
2013-04-29use FD_CLOEXEC instead of 1; from David HillOkan Demirmen
2010-04-02fix a potential memory leak found by zinovik@Ingo Schwarze
2010-02-03Use MACHINE_CPU instead of MACHINE_ARCH to pick the correct machine dependentMiod Vallat
2009-11-01Two minor bug fixes rotting in my tree:Ingo Schwarze
2009-06-12YP client functions do not allocate memory when they fail;Ingo Schwarze
2009-06-07fix a minor memory leak spotted by deraadt@; ok millert@ deraadt@Ingo Schwarze
2009-06-06In case of memory exhaustion, ypmatch_add may both leak memory and leaveIngo Schwarze
2009-06-05malloc(3) failure should raise YPERR_RESRC, not YPERR_YPERR;Ingo Schwarze
2009-06-05improve yp_bind(3) error reporting after clnttcp_create(3) failure:Ingo Schwarze
2009-06-05An empty sting cannot be used as a YP domain name,Ingo Schwarze
2009-06-04fix two obvious typosIngo Schwarze
2009-06-03Take advantage of the surprise libc bump to bring inIngo Schwarze
2008-12-22document yp_maplist(); from Ingo SchwarzeJason McIntyre
2008-06-26First pass at removing clauses 3 and 4 from NetBSD licenses.Ray Lai
2008-05-24typo.Igor Sobrado
2007-09-17Check snprintf(3) return value for error or truncation.Moritz Jodeit
2007-05-31convert to new .Dd format;Jason McIntyre
2005-08-05- remove rcsidMarc Espie
2003-07-07- fix a listJason McIntyre
2003-06-25Move static funcion and variable declarations from header to theMarco S Hyman
2003-06-02remove terms 3 & 4 on my own softwareTheo de Raadt
2003-05-07typos;Jason McIntyre
2002-09-04spellingTheo de Raadt
2002-07-31if ypmatch_add sees short keys or values, abort earlyTheo de Raadt
2002-07-20ansiTheo de Raadt
2002-02-17Manual cleanup of remaining userland __P use (excluding packages maintained o...Todd C. Miller
2002-02-16Part one of userland __P removal. Done with a simple regexp with some minor ...Todd C. Miller
2002-01-02KNFTheo de Raadt
2002-01-02more pid_t useTheo de Raadt
2001-08-06o) We always close .Bl and .Bd tags;Mike Pechkin
2001-06-27use strlcpy vs strncpy+a[len-1]='\0'. millert@ ok.lebel