From 5700b02c694d079853386faf63e31621c4594ee2 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Sat, 1 Jul 2000 13:48:13 +0000 Subject: [PATCH] (krb5_verify): conditionalize on KRB5 git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8497 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/ftp/ftpd/ftpd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/appl/ftp/ftpd/ftpd.c b/appl/ftp/ftpd/ftpd.c index b42b148d2..4034be62d 100644 --- a/appl/ftp/ftpd/ftpd.c +++ b/appl/ftp/ftpd/ftpd.c @@ -832,6 +832,7 @@ end_login(void) dochroot = 0; } +#ifdef KRB5 int krb5_verify(struct passwd *pwd, char *passwd) { @@ -872,6 +873,7 @@ krb5_verify(struct passwd *pwd, char *passwd) return ret; return 0; } +#endif void pass(char *passwd)