summaryrefslogtreecommitdiff
path: root/packet.c
diff options
context:
space:
mode:
Diffstat (limited to 'packet.c')
-rw-r--r--packet.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet.c b/packet.c
index 54c0558f9..1275fca92 100644
--- a/packet.c
+++ b/packet.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: packet.c,v 1.192 2014/02/02 03:44:31 djm Exp $ */ 1/* $OpenBSD: packet.c,v 1.193 2014/04/01 05:32:57 djm Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -912,8 +912,8 @@ packet_send2_wrapped(void)
912 roundup(active_state->extra_pad, block_size); 912 roundup(active_state->extra_pad, block_size);
913 pad = active_state->extra_pad - 913 pad = active_state->extra_pad -
914 ((len + padlen) % active_state->extra_pad); 914 ((len + padlen) % active_state->extra_pad);
915 debug3("packet_send2: adding %d (len %d padlen %d extra_pad %d)", 915 DBG(debug3("%s: adding %d (len %d padlen %d extra_pad %d)",
916 pad, len, padlen, active_state->extra_pad); 916 __func__, pad, len, padlen, active_state->extra_pad));
917 padlen += pad; 917 padlen += pad;
918 active_state->extra_pad = 0; 918 active_state->extra_pad = 0;
919 } 919 }