From patchwork Wed Apr 10 17:16:52 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Scott Lovenberg X-Patchwork-Id: 2422421 Return-Path: X-Original-To: patchwork-cifs-client@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 819F33FCA5 for ; Wed, 10 Apr 2013 17:19:08 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S964956Ab3DJRTH (ORCPT ); Wed, 10 Apr 2013 13:19:07 -0400 Received: from mail-vc0-f171.google.com ([209.85.220.171]:36105 "EHLO mail-vc0-f171.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752108Ab3DJRTG (ORCPT ); Wed, 10 Apr 2013 13:19:06 -0400 Received: by mail-vc0-f171.google.com with SMTP id ha12so467080vcb.2 for ; Wed, 10 Apr 2013 10:19:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer; bh=DUw9Xyln5Rq0p6wAz13pDgA8fHBLI100IcpaGNR3p3U=; b=fP28dheCeeWiGLo68VbGSTF9YyC0wdakMjycQX9EmI1O9eVGkVn/+fmDpoC4VCNheE X8XL2irw2mpnuMlJwKJC7MnoZvHL5DH3m2R7Iiw2xSMI4XKPnJMdYP2PfG8VcpHRtGwv 3L6IshzOwG/4Am+DBVoBJzFCaLyNIyeXWE8buUuidc9pONMYO+i49cKSgLBsBuPXO4vD DO6B5lkb/4AeLnbLLh+GXTvNWry27KVsCPp0nDC35SXVOiuJWacK3HRjXdjqmyYANHXN 3yWAgjKuDMakNZMi74989b9jwKVGQQf0gIxIsJ0D/j6wxr0PczC69l5zt55NuLtsBQ4g vU2A== X-Received: by 10.220.88.145 with SMTP id a17mr2208323vcm.66.1365614346081; Wed, 10 Apr 2013 10:19:06 -0700 (PDT) Received: from localhost.localdomain ([64.9.41.156]) by mx.google.com with ESMTPS id dk6sm729341vdb.11.2013.04.10.10.19.04 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 10 Apr 2013 10:19:05 -0700 (PDT) From: scott.lovenberg@gmail.com To: jlayton@redhat.com Cc: linux-cifs@vger.kernel.org, Scott Lovenberg Subject: [PATCH] cifs: Trivial comment fixes Date: Wed, 10 Apr 2013 13:16:52 -0400 Message-Id: <1365614212-13433-1-git-send-email-scott.lovenberg@gmail.com> X-Mailer: git-send-email 1.7.5.4 Sender: linux-cifs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-cifs@vger.kernel.org From: Scott Lovenberg Two trivial comment fixes. Signed-off-by: Scott Lovenberg --- mount.cifs.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mount.cifs.c b/mount.cifs.c index 4548fc6..58b127a 100644 --- a/mount.cifs.c +++ b/mount.cifs.c @@ -975,7 +975,7 @@ parse_options(const char *data, struct parsed_mount_info *parsed_info) fprintf(stderr, "bad option: gid=\"%s\"\n", value); return EX_USAGE; - /* fmask fall through to file_mode */ + /* fmask falls through to file_mode */ case OPT_FMASK: fprintf(stderr, "WARNING: CIFS mount option 'fmask' is\ @@ -1145,7 +1145,7 @@ nocopy: if (got_cruid) { word_len = snprintf(txtbuf, sizeof(txtbuf), "%u", cruid); - /* comma + "cruid=" + terminating NULL == 6 */ + /* comma + "cruid=" + terminating NULL == 8 */ if (out_len + word_len + 8 > MAX_OPTIONS_LEN) { fprintf(stderr, "Options string too long\n"); return EX_USAGE;