Commit a23d3069 authored by Steve French's avatar Steve French

[CIFS] missing field in debug output from previous fix

Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent 88f370a6
......@@ -213,7 +213,8 @@ cifs_debug_data_read(char *buf, char **beginBuffer, off_t offset,
tcon->treeName, atomic_read(&tcon->useCount));
buf += length;
if (tcon->nativeFileSystem) {
length = sprintf("Type: %s ", tcon->nativeFileSystem);
length = sprintf(buf, "Type: %s ",
tcon->nativeFileSystem);
buf += length;
}
length = sprintf(buf, "DevInfo: 0x%x Attributes: 0x%x"
......
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