diff --git a/appl/telnet/libtelnet/Makefile.in b/appl/telnet/libtelnet/Makefile.in index 0e1b9b708..fb6903fd4 100644 --- a/appl/telnet/libtelnet/Makefile.in +++ b/appl/telnet/libtelnet/Makefile.in @@ -33,7 +33,7 @@ libtelnet.a: $(OBJECTS) $(RANLIB) libtelnet.a install: - @echo "Nothing to install in libtelnet" + @true clean cleandir: rm -f *.o *.a \#* *~ core diff --git a/lib/roken/setegid.c b/lib/roken/setegid.c index 4aaf44922..73ec5bc63 100644 --- a/lib/roken/setegid.c +++ b/lib/roken/setegid.c @@ -2,7 +2,8 @@ RCSID("$Id$"); -int setegid(int egid) +int +setegid(int egid) { #ifdef HAVE_SETREGID return setregid(-1, egid); @@ -12,5 +13,5 @@ int setegid(int egid) return setresgid(-1, egid, -1); #endif - return -1 + return -1; } diff --git a/lib/roken/seteuid.c b/lib/roken/seteuid.c index 39611da1c..37f1240a5 100644 --- a/lib/roken/seteuid.c +++ b/lib/roken/seteuid.c @@ -2,7 +2,8 @@ RCSID("$Id$"); -int seteuid(int euid) +int +seteuid(int euid) { #ifdef HAVE_SETREUID return setreuid(-1, euid); @@ -12,5 +13,5 @@ int seteuid(int euid) return setresuid(-1, euid, -1); #endif - return -1 + return -1; }