diff options
author | Jeff Layton <jlayton@redhat.com> | 2007-10-16 16:50:25 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-10-16 16:50:25 +0000 |
commit | 7111d2144f17155b66e89b3655fcddbedefcf8a6 (patch) | |
tree | d96fa5659257a563d81faad5b2e7f5591c5ef1fd /fs/cifs | |
parent | 8f2376adfb57d95973b64ecdf016937f436b9bf0 (diff) | |
download | linux-3.10-7111d2144f17155b66e89b3655fcddbedefcf8a6.tar.gz linux-3.10-7111d2144f17155b66e89b3655fcddbedefcf8a6.tar.bz2 linux-3.10-7111d2144f17155b66e89b3655fcddbedefcf8a6.zip |
[CIFS]
[CIFS] fix error message about packet signing
When packet signing is disabled and the server requires it, cifs prints
an error message. The current message refers to a file in /proc that no
longer exists. Fix it to refer to the correct file.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/cifssmb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index b17983633a1..9eef7249250 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c @@ -661,8 +661,8 @@ signing_check: cFYI(1, ("Signing disabled")); if (server->secMode & SECMODE_SIGN_REQUIRED) cERROR(1, ("Server requires " - "/proc/fs/cifs/PacketSigningEnabled " - "to be on")); + "packet signing to be enabled in " + "/proc/fs/cifs/SecurityFlags.")); server->secMode &= ~(SECMODE_SIGN_ENABLED | SECMODE_SIGN_REQUIRED); } else if ((secFlags & CIFSSEC_MUST_SIGN) == CIFSSEC_MUST_SIGN) { |