From patchwork Sun Mar 21 19:20:22 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Layton X-Patchwork-Id: 87285 Received: from lists.samba.org (fn.samba.org [216.83.154.106]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o2LJLCKw013461 for ; Sun, 21 Mar 2010 19:21:51 GMT Received: from fn.samba.org (localhost [127.0.0.1]) by lists.samba.org (Postfix) with ESMTP id DADABAD21E; Sun, 21 Mar 2010 13:20:46 -0600 (MDT) X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on fn.samba.org X-Spam-Level: X-Spam-Status: No, score=-3.4 required=3.8 tests=AWL, BAYES_00, NO_MORE_FUNN, SPF_PASS autolearn=no version=3.2.5 X-Original-To: linux-cifs-client@lists.samba.org Delivered-To: linux-cifs-client@lists.samba.org Received: from cdptpa-omtalb.mail.rr.com (cdptpa-omtalb.mail.rr.com [75.180.132.123]) by lists.samba.org (Postfix) with ESMTP id 4A2F8AD18E for ; Sun, 21 Mar 2010 13:20:29 -0600 (MDT) X-Authority-Analysis: v=1.0 c=1 a=zIq7IvtSGe0A:10 a=20KFwNOVAAAA:8 a=HeMizFhVLJz0dGmzu7UA:9 a=1Xe3stMZbjafsGX1u8ql0b4ASiMA:4 a=jEp0ucaQiEUA:10 X-Cloudmark-Score: 0 X-Originating-IP: 71.70.153.3 Received: from [71.70.153.3] ([71.70.153.3:53422] helo=mail.poochiereds.net) by cdptpa-oedge02.mail.rr.com (envelope-from ) (ecelerity 2.2.2.39 r()) with ESMTP id 1F/E5-06757-B7176AB4; Sun, 21 Mar 2010 19:20:28 +0000 Received: by mail.poochiereds.net (Postfix, from userid 4447) id 96A475805D; Sun, 21 Mar 2010 15:20:27 -0400 (EDT) From: Jeff Layton To: linux-cifs-client@lists.samba.org Date: Sun, 21 Mar 2010 15:20:22 -0400 Message-Id: <1269199227-21446-6-git-send-email-jlayton@redhat.com> X-Mailer: git-send-email 1.6.6.1 In-Reply-To: References: Subject: [linux-cifs-client] [PATCH 05/10] mount.cifs: remove uuid option X-BeenThere: linux-cifs-client@lists.samba.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: The Linux CIFS VFS client List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-cifs-client-bounces@lists.samba.org Errors-To: linux-cifs-client-bounces@lists.samba.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Sun, 21 Mar 2010 19:21:52 +0000 (UTC) diff --git a/mount.cifs.c b/mount.cifs.c index 1ba4175..84167f3 100644 --- a/mount.cifs.c +++ b/mount.cifs.c @@ -1102,7 +1102,6 @@ static struct option longopts[] = { { "pass",1,NULL,'p'}, { "credentials",1,NULL,'c'}, { "port",1,NULL,'P'}, - /* { "uuid",1,NULL,'U'}, */ /* BB unimplemented */ { NULL, 0, NULL, 0 } }; @@ -1167,7 +1166,6 @@ int main(int argc, char ** argv) char * orgoptions = NULL; char * share_name = NULL; const char * ipaddr = NULL; - char * uuid = NULL; char * mountpoint = NULL; char * options = NULL; char * optionstail; @@ -1247,9 +1245,6 @@ int main(int argc, char ** argv) case 'r': /* mount readonly */ flags |= MS_RDONLY; break; - case 'U': - uuid = optarg; - break; case 'v': ++verboseflag; break;