summaryrefslogtreecommitdiffstats
path: root/usr.sbin/rpc.ypupdated
Commit message (Collapse)AuthorAgeFilesLines
* MFC r264400,r265836:ngie2014-12-311-1/+1
| | | | | | | | | | | | | | r264400: NO_MAN= has been deprecated in favor of MAN= for some time, go ahead and finish the job. ncurses is now the only Makefile in the tree that uses it since it wasn't a simple mechanical change, and will be addressed in a future commit. r265836: Remove last two NO_MAN= in the tree. In both of these cases, MAN= is what is needed.
* Consistently set RPCGEN_CPP when running rpcgen, so the C preprocessordim2012-02-071-1/+1
| | | | | | set via ${CPP} is used, instead of always using hardcoded /usr/bin/cpp. MFC after: 1 week
* In usr.sbin/rpc.ypupdated/yp_dbupdate.c, since intmax_t is signed, justdim2011-12-181-1/+1
| | | | | | | like time_t, better use %jd instead of %ju. Strangely enough, neither gcc, clang nor gcc 4.6 warn about this discrepancy... MFC after: 1 week
* In usr.sbin/rpc.ypupdated/yp_dbupdate.c, include stdint.h, so intmax_tdim2011-12-181-0/+1
| | | | | | | is known, otherwise it won't build. Pointy hat to: dim MFC after: 1 week
* In usr.sbin/rpc.ypupdated/yp_dbupdate.c, use the appropriate printfdim2011-12-181-1/+1
| | | | | | length modifier for time_t (after casting it to intmax_t). MFC after: 1 week
* Remove duplicated header fileskevlo2011-06-243-3/+0
|
* The last big commit: let usr.sbin/ use WARNS=6 by default.ed2010-01-021-0/+2
|
* Kill blank line at EOF.trhodes2007-02-151-1/+0
|
* Start the dreaded NOFOO -> NO_FOO conversion.ru2004-12-211-1/+1
| | | | OK'ed by: core
* For variables that are only checked with defined(), don't provideru2004-10-241-1/+1
| | | | any fake value.
* Remove definition of struct dom_binding, it's non-standard C code andstefanf2004-10-171-1/+0
| | | | unnecessary since src/include/rpcsvc/ypclnt.h's revision 1.10.
* Include <stdlib.h> for exit() and abort() prototypes.stefanf2004-05-241-0/+1
| | | | Approved by: das (mentor)
* Include <rpc/rpc_com.h> for a _rpc_dtablesize() prototype.stefanf2004-05-241-0/+1
| | | | Approved by: das (mentor)
* Use __FBSDID over rcsid[]. Protect copyright[] where needed.obrien2003-05-034-16/+8
|
* style.Makefile(5)obrien2003-04-041-1/+1
|
* Unbogotify the comment containing the RCS Id.des2002-02-151-1/+4
|
* ANSIfy and remove some dead code.des2002-02-065-80/+36
| | | | Sponsored by: DARPA, NAI Labs
* Apply the following mechanical transformations in preparation fordes2002-02-066-11/+11
| | | | | | | | | | | | | | | | | ansification and constification: s{\s+__P\((\(.*?\))\)}{$1}g; s{\(\s+}{\(}g; s{\s+\)}{\)}g; s{\s+,}{,}g; s{(\s+)(for|if|switch|while)\(}{$1$2 \(}g; s{return ([^\(].*?);}{return ($1);}g; s{([\w\)])([!=+/\*-]?=)([\w\(+-])}{$1 $2 $3}g; s{\s+$}{\n};g Also add $FreeBSD$ where needed. MFC after: 1 week
* Perform a major cleanup of the usr.sbin Makefiles.obrien2001-07-201-9/+5
| | | | | These are not perfectly in agreement with each other style-wise, but they are orders of orders of magnitude more consistent style-wise than before.
* Fix the type of the NULL arg to execl()brian2001-07-092-2/+2
| | | | Idea from: Theo de Raadt <deraadt@openbsd.org>
* Bring in a hybrid of SunSoft's transport-independent RPC (TI-RPC) andalfred2001-03-192-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | associated changes that had to happen to make this possible as well as bugs fixed along the way. Bring in required TLI library routines to support this. Since we don't support TLI we've essentially copied what NetBSD has done, adding a thin layer to emulate direct the TLI calls into BSD socket calls. This is mostly from Sun's tirpc release that was made in 1994, however some fixes were backported from the 1999 release (supposedly only made available after this porting effort was underway). The submitter has agreed to continue on and bring us up to the 1999 release. Several key features are introduced with this update: Client calls are thread safe. (1999 code has server side thread safe) Updated, a more modern interface. Many userland updates were done to bring the code up to par with the recent RPC API. There is an update to the pthreads library, a function pthread_main_np() was added to emulate a function of Sun's threads library. While we're at it, bring in NetBSD's lockd, it's been far too long of a wait. New rpcbind(8) replaces portmap(8) (supporting communication over an authenticated Unix-domain socket, and by default only allowing set and unset requests over that channel). It's much more secure than the old portmapper. Umount(8), mountd(8), mount_nfs(8), nfsd(8) have also been upgraded to support TI-RPC and to support IPV6. Umount(8) is also fixed to unmount pathnames longer than 80 chars, which are currently truncated by the Kernel statfs structure. Submitted by: Martin Blapp <mb@imp.ch> Manpage review: ru Secure RPC implemented by: wpaul
* Don't call syslog() without a format string.kris2000-07-121-2/+2
|
* Remove unused include.asmodai2000-04-291-1/+0
|
* $Id$ -> $FreeBSD$peter1999-08-287-7/+7
|
* getopt(3) returns -1 not EOF.imp1999-05-231-2/+2
|
* Removed bogus dependencies of generated .c files on generated headers.bde1998-05-101-2/+2
|
* Fixed `make -jN' for large N, as usual.bde1998-03-061-2/+2
|
* Fixed DPADD.bde1997-12-161-2/+3
|
* Use err(3). Remove multiply defined Id string.charnier1997-10-135-35/+30
|
* Clobber unneeded prototypes; in particular, the redeclaration of malloc()wpaul1997-06-061-0/+4
| | | | | | | | will break compilation if DESTDIR is not set. The update.c module is actually from the Sun RPC distribution so this is really their bogon, but I should have noticed it when I integrated the code into rpc.ypupdated. Sung to me by: Satoshi
* Mind-o: MAN8= yes --> NOMAN= yeswpaul1997-05-291-2/+2
| | | | Etched onto my brain with acid by: Mark Murray.
* This commit was generated by cvs2svn to compensate for changes in r26236,wpaul1997-05-288-0/+1210
which included commits to RCS files with non-trunk default branches.
OpenPOWER on IntegriCloud