]> granicus.if.org Git - sudo/commitdiff
Fix compat setutxent and endutxent macros for systems with
authorTodd C. Miller <Todd.Miller@courtesan.com>
Fri, 30 Mar 2012 11:55:49 +0000 (07:55 -0400)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Fri, 30 Mar 2012 11:55:49 +0000 (07:55 -0400)
setutent() but not setutxent().  From Gustavo Zacarias

src/utmp.c

index 7f8113bd5a2f567aa123e03bde4cc13d769bb69e..dd606cf2dfa02a08c556937e2932f224e42fb73a 100644 (file)
@@ -63,8 +63,8 @@
 #if !defined(HAVE_GETUTXID) && defined(HAVE_GETUTID)
 # define getutxline(u) getutline(u)
 # define pututxline(u) pututline(u)
-# define setutxent     setutent(u)
-# define endutxent     endutent(u)
+# define setutxent(u)  setutent(u)
+# define endutxent(u)  endutent(u)
 #endif /* !HAVE_GETUTXID && HAVE_GETUTID */
 
 #ifdef HAVE_GETUTXID