From d91efcea3cbdd7a617f35d3733c2fd14e7efeb86 Mon Sep 17 00:00:00 2001 From: Ondrej Kos Date: Mon, 6 Aug 2012 14:17:05 +0200 Subject: Removed unused variable assignment https://fedorahosted.org/sssd/ticket/1453 --- src/providers/proxy/proxy_id.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'src') diff --git a/src/providers/proxy/proxy_id.c b/src/providers/proxy/proxy_id.c index fe8c113f..06a15b8c 100644 --- a/src/providers/proxy/proxy_id.c +++ b/src/providers/proxy/proxy_id.c @@ -62,7 +62,6 @@ static int get_pw_name(TALLOC_CTX *mem_ctx, pwd = talloc_zero(tmpctx, struct passwd); if (!pwd) { ret = ENOMEM; - status = NSS_STATUS_TRYAGAIN; goto done; } @@ -70,7 +69,6 @@ static int get_pw_name(TALLOC_CTX *mem_ctx, buffer = talloc_size(tmpctx, buflen); if (!buffer) { ret = ENOMEM; - status = NSS_STATUS_TRYAGAIN; goto done; } -- cgit