diff options
| author | explorer <explorer@NetBSD.org> | 2000-06-16 23:17:41 +0000 |
|---|---|---|
| committer | explorer <explorer@NetBSD.org> | 2000-06-16 23:17:41 +0000 |
| commit | f8eb6433b2f2352d64c60e9d5c824b44ac09117f (patch) | |
| tree | bb7846bb5bb7d77c29a952117d9a8d88e98d5f7d /libexec | |
| parent | bd24eacf646ea9a267de10e474c7736c4e4e2e0e (diff) | |
include <krb5/krb5.h> before including extern.h, so krb5_context is defined
Diffstat (limited to 'libexec')
| -rw-r--r-- | libexec/ftpd/cmds.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libexec/ftpd/cmds.c b/libexec/ftpd/cmds.c index 9ea9a46467d..ed836f5543e 100644 --- a/libexec/ftpd/cmds.c +++ b/libexec/ftpd/cmds.c @@ -1,4 +1,4 @@ -/* $NetBSD: cmds.c,v 1.1 2000/06/14 13:44:22 lukem Exp $ */ +/* $NetBSD: cmds.c,v 1.2 2000/06/16 23:17:41 explorer Exp $ */ /* * Copyright (c) 1999-2000 The NetBSD Foundation, Inc. @@ -101,7 +101,7 @@ #include <sys/cdefs.h> #ifndef lint -__RCSID("$NetBSD: cmds.c,v 1.1 2000/06/14 13:44:22 lukem Exp $"); +__RCSID("$NetBSD: cmds.c,v 1.2 2000/06/16 23:17:41 explorer Exp $"); #endif /* not lint */ #include <sys/param.h> @@ -118,6 +118,10 @@ __RCSID("$NetBSD: cmds.c,v 1.1 2000/06/14 13:44:22 lukem Exp $"); #include <tzfile.h> #include <unistd.h> +#ifdef KERBEROS5 +#include <krb5/krb5.h> +#endif + #include "extern.h" typedef struct { |
