diff options
| author | Mark Eichin <eichin@mit.edu> | 1995-04-26 21:44:19 +0000 |
|---|---|---|
| committer | Mark Eichin <eichin@mit.edu> | 1995-04-26 21:44:19 +0000 |
| commit | 978df5af6c7aecd233c2280079bf6c11a25fe45a (patch) | |
| tree | f86df12d02fdf6dc15a781cf085b71ad27b4d197 /src/appl/bsd/logutil.c | |
| parent | 87249a89bbe5f6174ad0e36511012206a4221a41 (diff) | |
| download | krb5-978df5af6c7aecd233c2280079bf6c11a25fe45a.tar.gz krb5-978df5af6c7aecd233c2280079bf6c11a25fe45a.tar.xz krb5-978df5af6c7aecd233c2280079bf6c11a25fe45a.zip | |
* logutil.c (EMPTY): linux has UT_UNKNOWN, not EMPTY
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5524 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/appl/bsd/logutil.c')
| -rw-r--r-- | src/appl/bsd/logutil.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/appl/bsd/logutil.c b/src/appl/bsd/logutil.c index 5c594e4920..12c67f2821 100644 --- a/src/appl/bsd/logutil.c +++ b/src/appl/bsd/logutil.c @@ -42,6 +42,11 @@ #endif +#ifndef EMPTY +/* linux has UT_UNKNOWN but not EMPTY */ +#define EMPTY UT_UNKNOWN +#endif + void update_utmp(); void update_wtmp(); void logwtmp(); |
