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 98147c95..ca89b0ad 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 (msgsizes && msglen != msgsizes[num])
- error(0, 0, "size of message %d (%d) was not what was expected (%d)", num, msglen, msgsizes[num]);
+ if (msgsizes && msglen != msgsizes[num-1])
+ error(0, 0, "size of message %d (%d) was not what was expected (%d)", num, msglen, msgsizes[num-1]);
/* end-of-message processing starts here */
if (outlevel == O_VERBOSE)