Commit dedc3b89 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix typo in call to end_message in buffer_hello.

This would cause an assertion failure whenever we
sent a Unicast Hello.  Thanks to Dave Taht.
parent d94537c1
......@@ -1041,7 +1041,7 @@ buffer_hello(struct buffered *buf, struct interface *ifp,
accumulate_byte(buf, 4);
accumulate_int(buf, 0);
}
end_message(&ifp->buf, MESSAGE_HELLO, timestamp ? 12 : 6);
end_message(buf, MESSAGE_HELLO, timestamp ? 12 : 6);
}
void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment