From d99c2eda401b273d5800a66da6fe63e94d015e62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Tue, 24 May 2011 08:26:52 -0700 Subject: [PATCH] use else if --- kdc/fast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kdc/fast.c b/kdc/fast.c index cccda17c7..c8fa04e12 100644 --- a/kdc/fast.c +++ b/kdc/fast.c @@ -276,7 +276,7 @@ _kdc_fast_unwrap_request(kdc_request_t r) "armor key does not have secrets at this KDC, " "need to proxy"); goto out; - } if(ret){ + } else if (ret) { free_AP_REQ(&ap_req); ret = KRB5KDC_ERR_S_PRINCIPAL_UNKNOWN; goto out;