diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-11-17 20:20:38 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-11-17 20:20:38 +0300 |
commit | 8a1eaa6a5697c4554ecacbd021c668f51318c09e (patch) | |
tree | 2c840949d6a7b538228ded831753d659bf8cd628 /fs | |
parent | a044a1b147a1c967e1a4b797c3e24c395f3d878a (diff) | |
parent | f534dc994397560343be4a3223b9bbaa8e739e1f (diff) | |
download | linux-8a1eaa6a5697c4554ecacbd021c668f51318c09e.tar.xz |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/sfrench/cifs-2.6:
cifs: clear server inode number flag while autodisabling
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/misc.c b/fs/cifs/misc.c index 1e25efcb55c8..d27d4ec6579b 100644 --- a/fs/cifs/misc.c +++ b/fs/cifs/misc.c @@ -720,7 +720,7 @@ void cifs_autodisable_serverino(struct cifs_sb_info *cifs_sb) { if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_SERVER_INUM) { - cifs_sb->mnt_cifs_flags &= CIFS_MOUNT_SERVER_INUM; + cifs_sb->mnt_cifs_flags &= ~CIFS_MOUNT_SERVER_INUM; cERROR(1, ("Autodisabling the use of server inode numbers on " "%s. This server doesn't seem to support them " "properly. Hardlinks will not be recognized on this " |