other systems)
* update_utmp.c: ultimately fall back to /etc/utmp for UTMP_FILE,
if it is still missing after all previous efforts.
* update_wtmp.c: /usr/adm/wtmp for WTMP_FILE likewise.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6882
dc483132-0cff-0310-8789-
dd5450dbe970
* Makefile.in: Removed "foo:: foo-$(WHAT)" lines from the
Makefile.
+Thu Sep 7 19:13:05 1995 Mark Eichin <eichin@cygnus.com>
+
+ * update_utmp.c: ultimately fall back to /etc/utmp for UTMP_FILE,
+ if it is still missing after all previous efforts.
+ * update_wtmp.c: /usr/adm/wtmp for WTMP_FILE likewise.
+
Thu Aug 24 18:40:48 1995 Theodore Y. Ts'o <tytso@dcl>
* .Sanitize: Update file list
#define UTMP_FILE _PATH_UTMP
#endif
+/* if it is *still* missing, assume SunOS */
+#ifndef UTMP_FILE
+#define UTMP_FILE "/etc/utmp"
+#endif
+
long pty_update_utmp (process_type, pid, username, line, host)
int process_type;
int pid;
#define WTMP_FILE _PATH_WTMP
#endif
+/* if it is *still* missing, assume SunOS */
+#ifndef WTMP_FILE
+#define WTMP_FILE "/usr/adm/wtmp"
+#endif
+
long ptyint_update_wtmp (ent)
struct utmp *ent;
{