Fix some typos.

Some code copied and pasted without updating the variable names was
causing crashes.
This commit is contained in:
John "Elwin" Edwards 2012-05-23 14:28:47 -07:00
parent 018adf9acf
commit c1856a6184
2 changed files with 2 additions and 2 deletions

View file

@ -152,7 +152,7 @@ function processMsg(msg) {
nrecv++;
}
}
else if (response.n > nrecv) {
else if (msgDict.n > nrecv) {
/* The current message comes after one still missing. Queue this one
* for later use. */
debug(1, "Got packet " + msgDict.n + ", expected " + nrecv);