diff options
author | Scott Lovenberg <scott.lovenberg@gmail.com> | 2013-04-10 13:16:52 -0400 |
---|---|---|
committer | Jeff Layton <jlayton@samba.org> | 2013-04-10 13:25:04 -0400 |
commit | 6885a6253aa214cbd6f6adbd5c948b74fa4a27a1 (patch) | |
tree | ea08a3e11a79e512edaaed5c66fd21ea757ec9b3 | |
parent | 0d57c198d6d03117b1e8ebb564ce8ac2535b607d (diff) | |
download | cifs-utils-6885a6253aa214cbd6f6adbd5c948b74fa4a27a1.tar.gz cifs-utils-6885a6253aa214cbd6f6adbd5c948b74fa4a27a1.tar.bz2 cifs-utils-6885a6253aa214cbd6f6adbd5c948b74fa4a27a1.zip |
mount.cifs: Trivial comment fixes
Two trivial comment fixes.
Signed-off-by: Scott Lovenberg <scott.lovenberg@gmail.com>
-rw-r--r-- | mount.cifs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mount.cifs.c b/mount.cifs.c index 496a2c8..3b2b89e 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; |