aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--driver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver.c b/driver.c
index fc6f23c4..98147c95 100644
--- a/driver.c
+++ b/driver.c
@@ -1685,8 +1685,8 @@ const struct method *proto; /* protocol method table */
}
/* check to see if the numbers matched? */
- if (msglen != len)
- error(0, 0, "size of message %d (%d) was not what was expected (%d)", num, msglen, len);
+ if (msgsizes && msglen != msgsizes[num])
+ error(0, 0, "size of message %d (%d) was not what was expected (%d)", num, msglen, msgsizes[num]);
/* end-of-message processing starts here */
if (outlevel == O_VERBOSE)