On Fri, 22 Nov 2013 11:26:56 +0100 Gregor Beck <gbeck@xxxxxxxxx> wrote: > --- > cifssmb.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/cifssmb.c b/cifssmb.c > index 38be854..5d10afc 100644 > --- a/cifssmb.c > +++ b/cifssmb.c > @@ -3935,7 +3935,7 @@ QFileInfoRetry: > rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, > (struct smb_hdr *) pSMBr, &bytes_returned, 0); > if (rc) { > - cifs_dbg(FYI, "Send error in QPathInfo = %d\n", rc); > + cifs_dbg(FYI, "Send error in QFileInfo = %d", rc); > } else { /* decode response */ > rc = validate_t2((struct smb_t2_rsp *)pSMBr); > > @@ -4131,7 +4131,7 @@ UnixQFileInfoRetry: > rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, > (struct smb_hdr *) pSMBr, &bytes_returned, 0); > if (rc) { > - cifs_dbg(FYI, "Send error in QPathInfo = %d\n", rc); > + cifs_dbg(FYI, "Send error in UnixQFileInfo = %d", rc); > } else { /* decode response */ > rc = validate_t2((struct smb_t2_rsp *)pSMBr); > > @@ -4215,7 +4215,7 @@ UnixQPathInfoRetry: > rc = SendReceive(xid, tcon->ses, (struct smb_hdr *) pSMB, > (struct smb_hdr *) pSMBr, &bytes_returned, 0); > if (rc) { > - cifs_dbg(FYI, "Send error in QPathInfo = %d\n", rc); > + cifs_dbg(FYI, "Send error in UnixQPathInfo = %d", rc); > } else { /* decode response */ > rc = validate_t2((struct smb_t2_rsp *)pSMBr); > Nice fix. I'd go ahead and ask Steve to merge this independently of the others... Reviewed-by: Jeff Layton <jlayton@xxxxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe linux-cifs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html