Unifdef SYSV4. Essentially prompting.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@205 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Björn Groenvall
1995-12-22 12:21:51 +00:00
parent f9e9546ae5
commit 19186c0f53

View File

@@ -9,7 +9,7 @@ RCSID("$Header$");
int
utmpx_login(char *line, char *user, char *host)
{
#ifndef SYSV_UTMP
#ifndef HAVE_UTMPX_H
return 0;
#else
struct utmpx *ut;
@@ -43,5 +43,5 @@ utmpx_login(char *line, char *user, char *host)
}
endutxent();
return (ret);
#endif /* SYSV_UTMP */
#endif /* HAVE_UTMPX_H */
}