summaryrefslogtreecommitdiffstats
path: root/sys/netsmb/smb_rq.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/netsmb/smb_rq.c')
-rw-r--r--sys/netsmb/smb_rq.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/netsmb/smb_rq.c b/sys/netsmb/smb_rq.c
index 6172b81..002a62c 100644
--- a/sys/netsmb/smb_rq.c
+++ b/sys/netsmb/smb_rq.c
@@ -451,8 +451,8 @@ smb_t2_reply(struct smb_t2rq *t2p)
return 0;
}
/*
- * Now we have to get all subseqent responses. The CIFS specification
- * says that they can be misordered which is weird.
+ * Now we have to get all subsequent responses. The CIFS specification
+ * says that they can be disordered which is weird.
* TODO: timo
*/
totpgot = totdgot = 0;
@@ -479,7 +479,7 @@ smb_t2_reply(struct smb_t2rq *t2p)
(error = md_get_uint16le(mdp, &pdisp)) != 0)
break;
if (pcount != 0 && pdisp != totpgot) {
- SMBERROR("Can't handle misordered parameters %d:%d\n",
+ SMBERROR("Can't handle disordered parameters %d:%d\n",
pdisp, totpgot);
error = EINVAL;
break;
@@ -489,7 +489,7 @@ smb_t2_reply(struct smb_t2rq *t2p)
(error = md_get_uint16le(mdp, &ddisp)) != 0)
break;
if (dcount != 0 && ddisp != totdgot) {
- SMBERROR("Can't handle misordered data\n");
+ SMBERROR("Can't handle disordered data\n");
error = EINVAL;
break;
}
OpenPOWER on IntegriCloud