]> granicus.if.org Git - sudo/commitdiff
fix an occurence of setresuid -> setreuid (typo)
authorTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 21 May 1997 15:57:26 +0000 (15:57 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Wed, 21 May 1997 15:57:26 +0000 (15:57 +0000)
compat.h

index f0ead7bd3f6e0d8bc8aca909adf24f096ddd78b2..6ff8eea4baabed6e62b42fae587a9a89bddb8df4 100644 (file)
--- a/compat.h
+++ b/compat.h
 #  ifdef __hpux
 #    define seteuid(_EUID)     (setresuid(UID_NO_CHANGE, _EUID, UID_NO_CHANGE))
 #  else
-#    define seteuid(_EUID)     (setresuid(UID_NO_CHANGE, _EUID))
+#    define seteuid(_EUID)     (setreuid(UID_NO_CHANGE, _EUID))
 #  endif /* __hpux */
 #endif /* HAVE_SETEUID */