diff options
author | Steve French <sfrench@us.ibm.com> | 2007-01-21 23:19:01 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-01-21 23:19:01 +0000 |
commit | bd2abf177b3384375c43906be551d976e4c18166 (patch) | |
tree | 0056563e7aaefd073255a247d45a86ab1fda672e /fs | |
parent | 76849e3e97a95f1ef4627b10305d38a686fab112 (diff) | |
download | linux-bd2abf177b3384375c43906be551d976e4c18166.tar.bz2 |
[CIFS] cifs sprintf fix
Cc: <alert7@xfocus.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cifs/cifs_debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/cifs/cifs_debug.c b/fs/cifs/cifs_debug.c index 96abeb738978..6017c465440e 100644 --- a/fs/cifs/cifs_debug.c +++ b/fs/cifs/cifs_debug.c @@ -143,8 +143,8 @@ cifs_debug_data_read(char *buf, char **beginBuffer, off_t offset, ses = list_entry(tmp, struct cifsSesInfo, cifsSessionList); if((ses->serverDomain == NULL) || (ses->serverOS == NULL) || (ses->serverNOS == NULL)) { - buf += sprintf("\nentry for %s not fully displayed\n\t", - ses->serverName); + buf += sprintf(buf, "\nentry for %s not fully " + "displayed\n\t", ses->serverName); } else { length = |