summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sshd.c b/sshd.c
index 5d4d14ae2..cb45cecbd 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sshd.c,v 1.380 2010/09/22 05:01:29 djm Exp $ */ 1/* $OpenBSD: sshd.c,v 1.381 2011/01/11 06:13:10 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
@@ -2027,7 +2027,8 @@ main(int ac, char **av)
2027 /* The connection has been terminated. */ 2027 /* The connection has been terminated. */
2028 packet_get_state(MODE_IN, NULL, NULL, NULL, &ibytes); 2028 packet_get_state(MODE_IN, NULL, NULL, NULL, &ibytes);
2029 packet_get_state(MODE_OUT, NULL, NULL, NULL, &obytes); 2029 packet_get_state(MODE_OUT, NULL, NULL, NULL, &obytes);
2030 verbose("Transferred: sent %llu, received %llu bytes", obytes, ibytes); 2030 verbose("Transferred: sent %llu, received %llu bytes",
2031 (unsigned long long)obytes, (unsigned long long)ibytes);
2031 2032
2032 verbose("Closing connection to %.500s port %d", remote_ip, remote_port); 2033 verbose("Closing connection to %.500s port %d", remote_ip, remote_port);
2033 2034