From 35ccb5a15c39fa97bbca70701d0dfa9617c17fa7 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Wed, 29 Oct 1997 02:47:58 +0000 Subject: [PATCH] hata git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@3707 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/popper/pop_user.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/appl/popper/pop_user.c b/appl/popper/pop_user.c index a2f8b897c..8bff168a6 100644 --- a/appl/popper/pop_user.c +++ b/appl/popper/pop_user.c @@ -25,7 +25,10 @@ pop_user (POP *p) } else #endif if (p->auth_level != AUTH_NONE) { - char *s = otp_error(&p->otp_ctx); + char *s = NULL; +#ifdef OTP + s = otp_error(&p->otp_ctx); +#endif return pop_msg(p, POP_FAILURE, "Permission denied%s%s", s ? ":" : "", s ? s : ""); } else