]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2004/01/13 19:23:15
authordjm <djm>
Wed, 21 Jan 2004 00:00:46 +0000 (00:00 +0000)
committerdjm <djm>
Wed, 21 Jan 2004 00:00:46 +0000 (00:00 +0000)
     [compress.c session.c]
     -Wall; ok henning

ChangeLog
compress.c
session.c

index d3d81fe060844c046868d636e5b7db770a53c076..4e43ceb58acbfc52c4e6745a3cbb16bbb9a260c8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@
      remove unnecessary Ic's;
      kill whitespace at EOL;
      ok djm@
+   - markus@cvs.openbsd.org 2004/01/13 19:23:15
+     [compress.c session.c]
+     -Wall; ok henning
 
 20040114
  - (dtucker) [auth-pam.c] Have monitor die if PAM authentication thread exits
index 85a361d3a58ec282a84ad40da8f43ed4e643b4b5..2dea7cf36f52efda07a1321a5222fbd6c7274da0 100644 (file)
@@ -12,7 +12,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: compress.c,v 1.19 2002/03/18 17:31:54 provos Exp $");
+RCSID("$OpenBSD: compress.c,v 1.20 2004/01/13 19:23:15 markus Exp $");
 
 #include "log.h"
 #include "buffer.h"
@@ -56,11 +56,11 @@ buffer_compress_init_recv(void)
 void
 buffer_compress_uninit(void)
 {
-       debug("compress outgoing: raw data %lu, compressed %lu, factor %.2f",
+       debug("compress outgoing: raw data %llu, compressed %llu, factor %.2f",
            outgoing_stream.total_in, outgoing_stream.total_out,
            outgoing_stream.total_in == 0 ? 0.0 :
            (double) outgoing_stream.total_out / outgoing_stream.total_in);
-       debug("compress incoming: raw data %lu, compressed %lu, factor %.2f",
+       debug("compress incoming: raw data %llu, compressed %llu, factor %.2f",
            incoming_stream.total_out, incoming_stream.total_in,
            incoming_stream.total_out == 0 ? 0.0 :
            (double) incoming_stream.total_in / incoming_stream.total_out);
index cf6722c3476d0f47d4ce3e785bf7a496cc5d5263..82e1996af192cdaf0ff4900ab3d8ac00d08cda1d 100644 (file)
--- a/session.c
+++ b/session.c
@@ -33,7 +33,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: session.c,v 1.170 2003/12/23 16:12:10 jakob Exp $");
+RCSID("$OpenBSD: session.c,v 1.171 2004/01/13 19:23:15 markus Exp $");
 
 #include "ssh.h"
 #include "ssh1.h"
@@ -58,6 +58,10 @@ RCSID("$OpenBSD: session.c,v 1.170 2003/12/23 16:12:10 jakob Exp $");
 #include "session.h"
 #include "monitor_wrap.h"
 
+#ifdef KRB5
+#include <kafs.h>
+#endif
+
 #ifdef GSSAPI
 #include "ssh-gss.h"
 #endif
This page took 1.312337 seconds and 5 git commands to generate.