Psoriasis updates
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@505 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained 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
|
||||
|
@@ -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;
|
||||
}
|
||||
|
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user