Commit adbb2daf authored by Steve French's avatar Steve French

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: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
parent a0a3036b
...@@ -177,7 +177,7 @@ static int __cifs_reconnect_tcon(const struct nls_table *nlsc, ...@@ -177,7 +177,7 @@ static int __cifs_reconnect_tcon(const struct nls_table *nlsc,
if (dfs_host_len != tcp_host_len if (dfs_host_len != tcp_host_len
|| strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) { || 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__, __func__,
(int)dfs_host_len, dfs_host, (int)dfs_host_len, dfs_host,
(int)tcp_host_len, tcp_host); (int)tcp_host_len, tcp_host);
......
...@@ -209,7 +209,7 @@ static int __smb2_reconnect(const struct nls_table *nlsc, ...@@ -209,7 +209,7 @@ static int __smb2_reconnect(const struct nls_table *nlsc,
if (dfs_host_len != tcp_host_len if (dfs_host_len != tcp_host_len
|| strncasecmp(dfs_host, tcp_host, dfs_host_len) != 0) { || 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__, __func__,
(int)dfs_host_len, dfs_host, (int)dfs_host_len, dfs_host,
(int)tcp_host_len, tcp_host); (int)tcp_host_len, tcp_host);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment