From patchwork Mon Oct 22 16:07:11 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Chuck Lever X-Patchwork-Id: 1626811 Return-Path: X-Original-To: patchwork-linux-nfs@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 8B890DFB79 for ; Mon, 22 Oct 2012 16:07:15 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755548Ab2JVQHO (ORCPT ); Mon, 22 Oct 2012 12:07:14 -0400 Received: from mail-ie0-f174.google.com ([209.85.223.174]:60605 "EHLO mail-ie0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755547Ab2JVQHN (ORCPT ); Mon, 22 Oct 2012 12:07:13 -0400 Received: by mail-ie0-f174.google.com with SMTP id k13so3828544iea.19 for ; Mon, 22 Oct 2012 09:07:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:subject:to:cc:date:message-id:in-reply-to:references :user-agent:mime-version:content-type:content-transfer-encoding; bh=5M6f4L0mdXiD+KY/RDXU6fE65U2iW53j9DbDP8JkzmA=; b=aB1noKctNpPCPqsjyvaZZCHqYK1ehcZVpKv3asDLizViRp6qTffEB6fyPkuI0PvAc6 Z6ivlkwBKqVgnTWOrHCazAMWjpywglCU6ou7OlxT+V2K5DXPEWHVfpxa1jK+MUACas2K VP0pUyDLeL7/tvmTz4igbWAd1KiVfaGfa+ScCFm1uCbQ8fJRy3u0Nu+hu0NgAPRQ1vv6 5SKNBJI95OuSv31rRz7u/e7Rllia6YN6grGNjwy34puqc4ECWqAFc1lfah74RCrzryBk cbTn3ZetcLsE/uifTWrwOQnAriBcEFfA8Rhckkhmm1n7JKd6FRA5++tJhlslJRuG3rxr spXA== Received: by 10.50.47.226 with SMTP id g2mr6641147ign.43.1350922032729; Mon, 22 Oct 2012 09:07:12 -0700 (PDT) Received: from lebasque.1015granger.net (adsl-99-26-161-222.dsl.sfldmi.sbcglobal.net. [99.26.161.222]) by mx.google.com with ESMTPS id ex10sm8904535igc.15.2012.10.22.09.07.11 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 22 Oct 2012 09:07:12 -0700 (PDT) From: Chuck Lever Subject: [PATCH 10/10] rpc.gssd: Squelch compiler error To: steved@redhat.com Cc: linux-nfs@vger.kernel.org Date: Mon, 22 Oct 2012 12:07:11 -0400 Message-ID: <20121022160711.4552.45963.stgit@lebasque.1015granger.net> In-Reply-To: <20121022160140.4552.34477.stgit@lebasque.1015granger.net> References: <20121022160140.4552.34477.stgit@lebasque.1015granger.net> User-Agent: StGIT/0.14.3 MIME-Version: 1.0 Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org gssd_proc.c: In function ‘handle_krb5_upcall’: gssd_proc.c:1117:2: warning: ISO C forbids ‘return’ with expression, in function returning void [-pedantic] Signed-off-by: Chuck Lever --- utils/gssd/gssd_proc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/utils/gssd/gssd_proc.c b/utils/gssd/gssd_proc.c index 1bc3942..ec251fa 100644 --- a/utils/gssd/gssd_proc.c +++ b/utils/gssd/gssd_proc.c @@ -1116,7 +1116,7 @@ handle_krb5_upcall(struct clnt_info *clp) return; } - return process_krb5_upcall(clp, uid, clp->krb5_fd, NULL, NULL); + process_krb5_upcall(clp, uid, clp->krb5_fd, NULL, NULL); } void