From ff8b4959d922ed3a60ea8b7268fa54b2467f8c05 Mon Sep 17 00:00:00 2001 From: Kevin Steves Date: Thu, 5 Apr 2001 23:05:22 +0000 Subject: - (stevesk) logintest.c: fix for systems without __progname --- logintest.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'logintest.c') diff --git a/logintest.c b/logintest.c index 302034da..da9ea50e 100644 --- a/logintest.c +++ b/logintest.c @@ -48,8 +48,13 @@ #include "loginrec.h" -RCSID("$Id: logintest.c,v 1.7 2001/02/05 12:42:18 stevesk Exp $"); +RCSID("$Id: logintest.c,v 1.8 2001/04/05 23:05:22 stevesk Exp $"); +#ifdef HAVE___PROGNAME +extern char *__progname; +#else +char *__progname; +#endif #define PAUSE_BEFORE_LOGOUT 3 @@ -287,6 +292,7 @@ main(int argc, char *argv[]) { printf("Platform-independent login recording test driver\n"); + __progname = get_progname(argv[0]); if (argc == 2) { if (strncmp(argv[1], "-i", 3) == 0) compile_opts_only = 1; -- cgit v1.2.1