diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-01-15 13:18:42 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-01-15 13:18:42 +0000 |
commit | 51d2e12a88732c8d63311564fd4df090ac3d3608 (patch) | |
tree | b85c9429c196972dcd6f7c69e0e859d87ae514c3 /libc/inet/rpc/clnt_perror.c | |
parent | 67fb342b086501f95fdadb3cf69ff9abb7a714e7 (diff) |
I've been working on fixing up the rpc crap. now it is only
_mostly_ broken, a big improvement. Still doesn't compile...
Diffstat (limited to 'libc/inet/rpc/clnt_perror.c')
-rw-r--r-- | libc/inet/rpc/clnt_perror.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/libc/inet/rpc/clnt_perror.c b/libc/inet/rpc/clnt_perror.c index 84d2658ee..4ede1a43e 100644 --- a/libc/inet/rpc/clnt_perror.c +++ b/libc/inet/rpc/clnt_perror.c @@ -45,11 +45,12 @@ static char sccsid[] = #include <rpc/auth.h> #include <rpc/clnt.h> -extern char *sys_errlist[]; -static char *auth_errmsg(); +//extern char *sys_errlist[]; +//static char *auth_errmsg(); extern char *strcpy(); +#if 0 static char *buf; static char *_buf() @@ -59,13 +60,12 @@ static char *_buf() buf = (char *) malloc(256); return (buf); } +#endif /* * Print reply error info */ -char *clnt_sperror(rpch, s) -CLIENT *rpch; -char *s; +char *clnt_sperror __P ((CLIENT *rpch, const char *s)) { #if 0 struct rpc_err e; @@ -143,11 +143,10 @@ char *s; (void) sprintf(str, "\n"); return (strstart); #endif + return (0); } -void clnt_perror(rpch, s) -CLIENT *rpch; -char *s; +void clnt_perror __P ((CLIENT *rpch, const char *s)) { (void) fprintf(stderr, "%s", clnt_sperror(rpch, s)); } @@ -224,8 +223,7 @@ enum clnt_stat num; } -char *clnt_spcreateerror(s) -char *s; +char *clnt_spcreateerror __P ((__const char *s)) { #if 0 extern int sys_nerr; @@ -256,10 +254,10 @@ char *s; (void) strcat(str, "\n"); return (str); #endif + return(0); } -void clnt_pcreateerror(s) -char *s; +extern void clnt_pcreateerror __P ((__const char *s)) { (void) fprintf(stderr, "%s", clnt_spcreateerror(s)); } @@ -269,6 +267,7 @@ struct auth_errtab { char *message; }; +#if 0 static struct auth_errtab auth_errlist[] = { {AUTH_OK, "Authentication OK"}, @@ -300,3 +299,4 @@ enum auth_stat stat; } return (NULL); } +#endif |