diff options
author | markm <markm@FreeBSD.org> | 2000-02-24 15:29:42 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2000-02-24 15:29:42 +0000 |
commit | 37a38e66382c3a9fd9158a61cb6e2745d86c5df2 (patch) | |
tree | 6f147953be20d6ad5713e22b83313cbb39066181 /crypto/openssh/login.c | |
parent | 606d31b1ec502ee62ab4644dfa593b00666d18f7 (diff) | |
download | FreeBSD-src-37a38e66382c3a9fd9158a61cb6e2745d86c5df2.zip FreeBSD-src-37a38e66382c3a9fd9158a61cb6e2745d86c5df2.tar.gz |
Add the patches fom ports (QV: ports/security/openssh/patches/patch-*)
Diffstat (limited to 'crypto/openssh/login.c')
-rw-r--r-- | crypto/openssh/login.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/crypto/openssh/login.c b/crypto/openssh/login.c index 574a9cc..55480de 100644 --- a/crypto/openssh/login.c +++ b/crypto/openssh/login.c @@ -15,12 +15,17 @@ * login the current system has. Also, we want to be able to execute commands * on a tty. * + * $FreeBSD$ */ #include "includes.h" RCSID("$Id: login.c,v 1.11 2000/01/04 00:07:59 markus Exp $"); +#ifdef __FreeBSD__ +#include <libutil.h> +#else #include <util.h> +#endif /* __FreeBSD__ */ #include <utmp.h> #include "ssh.h" |