Skip to content
Snippets Groups Projects
Commit 1387654c authored by Whoopie's avatar Whoopie
Browse files

Fix wtmp, testing for wtmp.h and wtmpx.h doesn't make sense

parent 10eb218f
Branches
No related merge requests found
...@@ -79,10 +79,10 @@ ...@@ -79,10 +79,10 @@
# if defined(HAVE_UTMP_H) && defined(UTMP_FILE) && !defined(DISABLE_UTMP) # if defined(HAVE_UTMP_H) && defined(UTMP_FILE) && !defined(DISABLE_UTMP)
# define USE_UTMP # define USE_UTMP
# endif # endif
# if defined(HAVE_WTMPX_H) && defined(WTMPX_FILE) && !defined(DISABLE_WTMPX) # if defined(WTMPX_FILE) && !defined(DISABLE_WTMPX)
# define USE_WTMPX # define USE_WTMPX
# endif # endif
# if defined(HAVE_WTMP_H) && defined(WTMP_FILE) && !defined(DISABLE_WTMP) # if defined(WTMP_FILE) && !defined(DISABLE_WTMP)
# define USE_WTMP # define USE_WTMP
# endif # endif
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment