CVS commit: src/usr.bin/rpcgen

2016-01-22 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat Jan 23 02:33:09 UTC 2016 Modified Files: src/usr.bin/rpcgen: rpc_cout.c rpc_hout.c rpc_parse.c rpc_tblout.c Log Message: u_int -> unsigned int, in some of the output. In the bulk of the output making this change would requi

CVS commit: src/usr.bin/rpcgen

2015-11-07 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Nov 8 01:59:31 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_svcout.c Log Message: Delete extra declaration of svc_fdset... And some commented out code. This badly needs some modernization. To generate a diff of this c

CVS commit: src/usr.bin/rpcgen

2015-09-20 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Sep 20 16:57:13 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_cout.c rpc_main.c rpc_util.c Log Message: Prefer error messages resolved from errno over handwritten ones. To generate a diff of this commit: cvs rdiff -u -r1.3

CVS commit: src/usr.bin/rpcgen

2015-09-20 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Sep 20 16:39:04 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_main.c Log Message: Correct #ifdef/#endif header file guards generator for files with names other than alphanumerical. For example, for a file named config-subsc

CVS commit: src/usr.bin/rpcgen

2015-09-20 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Sep 20 15:52:11 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_svcout.c Log Message: Correct newstyle code generation For newstyle we used to generate oldstyle code. This bug has been fixed in FreeBSD on 13 Dec 1995 by wpaul

CVS commit: src/usr.bin/rpcgen

2015-09-20 Thread Kamil Rytarowski
Module Name:src Committed By: kamil Date: Sun Sep 20 15:45:07 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_hout.c Log Message: Fix NULL pointer dereference After the last function improvements there is invalid plist dereference at the beginning of the second for () ex

CVS commit: src/usr.bin/rpcgen

2015-05-13 Thread Joerg Sonnenberger
Module Name:src Committed By: joerg Date: Wed May 13 20:13:22 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_util.h Log Message: Mark error as dead. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/usr.bin/rpcgen/rpc_util.h Please note that diffs are

CVS commit: src/usr.bin/rpcgen

2015-05-09 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat May 9 23:29:52 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_parse.c Log Message: Remove pointless casts. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/usr.bin/rpcgen/rpc_parse.c Please note that d

CVS commit: src/usr.bin/rpcgen

2015-05-09 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat May 9 23:28:43 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_parse.c rpc_scan.c rpc_util.c rpc_util.h Log Message: Make error() printflike instead of using sprintf before calling it. To generate a diff of this commit:

CVS commit: src/usr.bin/rpcgen

2015-05-09 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat May 9 23:19:34 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_util.h Log Message: Use proper (enough) parentheses in macro expansion. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/usr.bin/rpcgen/rpc_u

CVS commit: src/usr.bin/rpcgen

2015-05-09 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat May 9 23:16:51 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_cout.c rpc_util.c Log Message: Use errx when malloc fails, and also don't cast the return value of malloc/realloc. To generate a diff of this commit: cvs rdi

CVS commit: src/usr.bin/rpcgen

2015-05-09 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat May 9 23:14:22 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_cout.c Log Message: one crash -> errx Christos missed To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/usr.bin/rpcgen/rpc_cout.c Please not

CVS commit: src/usr.bin/rpcgen

2015-05-09 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat May 9 23:12:57 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_cout.c rpc_hout.c rpc_main.c rpc_parse.c rpc_scan.c rpc_util.c Log Message: Polish the error messages. Don't use warn/err to print error messages

CVS commit: src/usr.bin/rpcgen

2015-05-09 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat May 9 22:58:22 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_main.c Log Message: #if 0 code should still compile :-) To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 src/usr.bin/rpcgen/rpc_main.c Please n

CVS commit: src/usr.bin/rpcgen

2015-05-09 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat May 9 21:44:48 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_main.c rpc_parse.h rpc_scan.h rpc_svcout.c rpc_util.c rpc_util.h Log Message: modernize: - make crash() called atexit - use err/err

CVS commit: src/usr.bin/rpcgen

2015-05-09 Thread David A. Holland
Module Name:src Committed By: dholland Date: Sat May 9 18:48:14 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_svcout.c Log Message: Also check the other emitted getrlimit call for failure. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/usr.bin/rpcg

CVS commit: src/usr.bin/rpcgen

2015-05-09 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sat May 9 15:12:12 UTC 2015 Modified Files: src/usr.bin/rpcgen: rpc_svcout.c Log Message: CID 1225082: Check getrlimit() return To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/usr.bin/rpcgen/rpc_svcout.c Pl

CVS commit: src/usr.bin/rpcgen

2013-12-15 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Sun Dec 15 09:18:31 UTC 2013 Modified Files: src/usr.bin/rpcgen: rpc_main.c Log Message: Sync usage and option descriptions with manpage. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 src/usr.bin/rpcgen/rpc_main.c

CVS commit: src/usr.bin/rpcgen

2013-12-15 Thread Thomas Klausner
Module Name:src Committed By: wiz Date: Sun Dec 15 09:18:14 UTC 2013 Modified Files: src/usr.bin/rpcgen: rpcgen.1 Log Message: Standardize SYNOPSIS. Sort option descriptions and remove duplicates. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/usr.bin/

CVS commit: src/usr.bin/rpcgen

2013-12-14 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Dec 15 06:07:39 UTC 2013 Modified Files: src/usr.bin/rpcgen: rpc_svcout.c Log Message: Put back the extra prototype for main(); some programs #define main to something else, so we need the extra prototype. To generate a di

CVS commit: src/usr.bin/rpcgen

2013-12-14 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun Dec 15 00:40:17 UTC 2013 Modified Files: src/usr.bin/rpcgen: rpc_clntout.c rpc_cout.c rpc_hout.c rpc_main.c rpc_parse.c rpc_sample.c rpc_scan.c rpc_svcout.c rpc_tblout.c rpc_util.c rpc_util.h rpcgen.1

CVS commit: src/usr.bin/rpcgen

2013-08-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Mon Aug 12 20:36:30 UTC 2013 Modified Files: src/usr.bin/rpcgen: rpc_cout.c Log Message: CID 1062241: simplify free for coverity To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/usr.bin/rpcgen/rpc_cout.c Plea

CVS commit: src/usr.bin/rpcgen

2009-05-06 Thread Brian Ginsbach
Module Name:src Committed By: ginsbach Date: Wed May 6 14:30:51 UTC 2009 Modified Files: src/usr.bin/rpcgen: rpc_parse.c rpc_scan.c rpc_scan.h Log Message: Add support for hyper and quad keywords. (See Sun ONC+ Developer's Guide and RFC-4506 for additional details.) [Fr

CVS commit: src/usr.bin/rpcgen

2009-04-12 Thread Luke Mewburn
Module Name:src Committed By: lukem Date: Mon Apr 13 06:42:26 UTC 2009 Modified Files: src/usr.bin/rpcgen: rpc_main.c Log Message: fix -Wshadow issue To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/usr.bin/rpcgen/rpc_main.c Please note that diffs are n