summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-06-04 15:51:47 +1000
committerDamien Miller <djm@mindrot.org>2000-06-04 15:51:47 +1000
commit2994e0891bae2276259d00fe1cce32323a3fbc66 (patch)
treefbb006cd56076e132513fbd44a38b2415c4435c4 /defines.h
parent60f3c983cc7314fe7e488e75be653974080f9de5 (diff)
- Configure tweaking for new login code on Irix 5.3
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/defines.h b/defines.h
index 52f6c9f08..e60a587b1 100644
--- a/defines.h
+++ b/defines.h
@@ -281,12 +281,12 @@ typedef int ssize_t;
281# define WTMP_FILE _PATH_WTMP 281# define WTMP_FILE _PATH_WTMP
282#endif 282#endif
283/* pick up the user's location for lastlog if given */ 283/* pick up the user's location for lastlog if given */
284#ifdef CONF_LASTLOG_FILE
285# define LASTLOG_FILE CONF_LASTLOG_FILE
286#endif
287#if !defined(LASTLOG_FILE) && defined(_PATH_LASTLOG) 284#if !defined(LASTLOG_FILE) && defined(_PATH_LASTLOG)
288# define LASTLOG_FILE _PATH_LASTLOG 285# define LASTLOG_FILE _PATH_LASTLOG
289#endif 286#endif
287#if !defined(LASTLOG_FILE) && defined(CONF_LASTLOG_FILE)
288# define LASTLOG_FILE CONF_LASTLOG_FILE
289#endif
290 290
291 291
292/* The login() library function in libutil is first choice */ 292/* The login() library function in libutil is first choice */