diff options
Diffstat (limited to 'common-session.c')
-rw-r--r-- | common-session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common-session.c b/common-session.c index 037a78d..41bf5b3 100644 --- a/common-session.c +++ b/common-session.c @@ -346,7 +346,7 @@ void session_cleanup() { void send_session_identification() { buffer *writebuf = buf_new(strlen(LOCAL_IDENT "\r\n") + 1); buf_putbytes(writebuf, (const unsigned char *) LOCAL_IDENT "\r\n", strlen(LOCAL_IDENT "\r\n")); - writebuf_enqueue(writebuf, 0); + writebuf_enqueue(writebuf); } static void read_session_identification() { |