summaryrefslogtreecommitdiff
path: root/man/filenames.sed.c
diff options
context:
space:
mode:
Diffstat (limited to 'man/filenames.sed.c')
-rw-r--r--man/filenames.sed.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/man/filenames.sed.c b/man/filenames.sed.c
new file mode 100644
index 0000000..2db7845
--- /dev/null
+++ b/man/filenames.sed.c
@@ -0,0 +1,29 @@
+#include "sessreg.h"
+
+#ifdef UTMPX_FILE
+# define UTF UTMPX_FILE
+# define UTM utmpx
+#else
+# define UTF UTMP_FILE
+# define UTM utmp
+#endif
+
+#ifdef WTMPX_FILE
+# define WTF WTMPX_FILE
+#else
+# define WTF WTMP_FILE
+#endif
+
+#ifndef TTYS_FILE
+# define TTYS_FILE "/etc/ttys"
+#endif
+
+#ifndef LLOG_FILE
+# define LLOG_FILE "/var/log/lastlog"
+#endif
+
+s|__utmp_manpage__|UTM|g
+s|__utmp_file__|UTF|g
+s|__wtmp_file__|WTF|g
+s|__ttys_file__|TTYS_FILE|g
+s|__lastlog_file__|LLOG_FILE|g