From ed5769e3053df9efb72683bde85f044578a2657e Mon Sep 17 00:00:00 2001 From: Alfred Perlstein Date: Thu, 10 Feb 2005 10:44:29 +0000 Subject: back out 1.7 changes, unneeded and possibly wrong. --- usr.bin/rpcgen/rpc_tblout.c | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) (limited to 'usr.bin') diff --git a/usr.bin/rpcgen/rpc_tblout.c b/usr.bin/rpcgen/rpc_tblout.c index b0896ef35c48..e23e058bc534 100644 --- a/usr.bin/rpcgen/rpc_tblout.c +++ b/usr.bin/rpcgen/rpc_tblout.c @@ -55,13 +55,11 @@ __FBSDID("$FreeBSD$"); static char tabstr[TABCOUNT+1] = "\t\t\t\t\t"; static char tbl_hdr[] = "struct rpcgen_table %s_table[] = {\n"; -static char tbl_end[] = "\n};\n"; +static char tbl_end[] = "};\n"; -static char null_entry[] = "\n\t{\n\ - \tNULL,\n\ +static char null_entry[] = "\n\t(char *(*)())0,\n\ \t(xdrproc_t) xdr_void,\t\t\t0,\n\ - \t(xdrproc_t) xdr_void,\t\t\t0,\n\ - \t}"; + \t(xdrproc_t) xdr_void,\t\t\t0,\n"; static char tbl_nproc[] = "int %s_nproc =\n\tsizeof(%s_table)/sizeof(%s_table[0]);\n\n"; @@ -121,7 +119,7 @@ write_table(def) } expected = current + 1; } - f_print(fout, ",\n\n\t{\n\tRPCGEN_ACTION("); + f_print(fout, "\n\t(char *(*)())RPCGEN_ACTION("); /* routine to invoke */ if( Cflag && !newstyle ) @@ -142,7 +140,6 @@ write_table(def) proc->args.decls->decl.type ); /* result info */ printit(proc->res_prefix, proc->res_type); - f_print(fout, "\t}"); } /* print the table trailer */ @@ -160,7 +157,7 @@ printit(prefix, type) int tabs; - len = fprintf(fout, "\t(xdrproc_t) xdr_%s,", stringfix(type)); + len = fprintf(fout, "\txdr_%s,", stringfix(type)); /* account for leading tab expansion */ len += TABSIZE - 1; /* round up to tabs required */ @@ -170,7 +167,7 @@ printit(prefix, type) if (streq(type, "void")) { f_print(fout, "0"); } else { - f_print(fout, " sizeof ( "); + f_print(fout, "sizeof ( "); /* XXX: should "follow" be 1 ??? */ ptype(prefix, type, 0); f_print(fout, ")"); -- cgit v1.2.3