git: 43b7fec10b6b - stable/14 - libcompat: silence -Wdeprecated-non-prototype
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 08 Feb 2024 17:45:09 UTC
The branch stable/14 has been updated by pstef: URL: https://cgit.FreeBSD.org/src/commit/?id=43b7fec10b6ba51cb5ac6265ef12b043f88a09a6 commit 43b7fec10b6ba51cb5ac6265ef12b043f88a09a6 Author: Piotr Paweł Stefaniak <pstef@FreeBSD.org> AuthorDate: 2024-02-03 18:12:42 +0000 Commit: Piotr Paweł Stefaniak <pstef@FreeBSD.org> CommitDate: 2024-02-08 17:40:06 +0000 libcompat: silence -Wdeprecated-non-prototype by removing unnecessary re-declarations and converting K&R-style function definitions. Differential Revision: https://reviews.freebsd.org/D43723 Reviewed by: imp, emaste (cherry picked from commit 12bae251fbfa33f375d134e0840d88c4363b8b94) --- lib/libcompat/4.3/rexec.c | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/lib/libcompat/4.3/rexec.c b/lib/libcompat/4.3/rexec.c index 3dac5ff18da3..bcd93a2c7cde 100644 --- a/lib/libcompat/4.3/rexec.c +++ b/lib/libcompat/4.3/rexec.c @@ -51,7 +51,6 @@ __SCCSID("@(#)rexec.c 8.1 (Berkeley) 6/4/93"); #include <unistd.h> int rexecoptions; -char *getpass(), *getlogin(); /* * Options and other state info. @@ -132,8 +131,7 @@ token() } static int -ruserpass(host, aname, apass, aacct) - char *host, **aname, **apass, **aacct; +ruserpass(char *host, char **aname, char **apass, char **aacct) { char *hdir, buf[BUFSIZ], *tmp; char myname[MAXHOSTNAMELEN], *mydomain; @@ -291,11 +289,7 @@ bad: } int -rexec(ahost, rport, name, pass, cmd, fd2p) - char **ahost; - int rport; - char *name, *pass, *cmd; - int *fd2p; +rexec(char **ahost, int rport, char *name, char *pass, char *cmd, int *fd2p) { struct sockaddr_in sin, sin2, from; struct hostent *hp;