diff options
author | Steve French <stfrench@microsoft.com> | 2020-05-30 16:45:11 -0500 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2020-06-01 00:10:18 -0500 |
commit | adbb2dafe732d4715a602ca727dedaa55c0df7a7 (patch) | |
tree | cbb2a4f22127b3b017eeeee4988bd1855044551b /fs/cifs | |
parent | a0a3036b81f1f66fa3333559ecfe18f5bbfa5076 (diff) | |
download | linux-stable-adbb2dafe732d4715a602ca727dedaa55c0df7a7.tar.gz linux-stable-adbb2dafe732d4715a602ca727dedaa55c0df7a7.tar.bz2 linux-stable-adbb2dafe732d4715a602ca727dedaa55c0df7a7.zip |
cifs: minor fix to two debug messages
Joe Perches pointed out that we were missing a newline
at the end of two debug messages
Reported-by: Joe Perches <joe@perches.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/cifssmb.c | 2 | ||||
-rw-r--r-- | fs/cifs/smb2pdu.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/cifssmb.c b/fs/cifs/cifssmb.c index 5820f9569b7f..bf41ee048396 100644 --- a/fs/cifs/cifssmb.c +++ b/fs/cifs/cifssmb.c @@ -177,7 +177,7 @@ static int __cifs_reconnect_tcon(const struct nls_table *nlsc, if (dfs_host_len != tcp_host_len || strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) { - cifs_dbg(FYI, "%s: %.*s doesn't match %.*s", + cifs_dbg(FYI, "%s: %.*s doesn't match %.*s\n", __func__, (int)dfs_host_len, dfs_host, (int)tcp_host_len, tcp_host); diff --git a/fs/cifs/smb2pdu.c b/fs/cifs/smb2pdu.c index 4b79181ff872..06463f386a60 100644 --- a/fs/cifs/smb2pdu.c +++ b/fs/cifs/smb2pdu.c @@ -209,7 +209,7 @@ static int __smb2_reconnect(const struct nls_table *nlsc, if (dfs_host_len != tcp_host_len || strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) { - cifs_dbg(FYI, "%s: %.*s doesn't match %.*s", + cifs_dbg(FYI, "%s: %.*s doesn't match %.*s\n", __func__, (int)dfs_host_len, dfs_host, (int)tcp_host_len, tcp_host); |