Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/crypto/external/bsd/openssh/dist don't print a return on deb...
details: https://anonhg.NetBSD.org/src/rev/959f8aecfb3f
branches: trunk
changeset: 335682:959f8aecfb3f
user: christos <christos%NetBSD.org@localhost>
date: Wed Jan 21 02:05:47 2015 +0000
description:
don't print a return on debug messages
diffstat:
crypto/external/bsd/openssh/dist/packet.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r b50252d9eff5 -r 959f8aecfb3f crypto/external/bsd/openssh/dist/packet.c
--- a/crypto/external/bsd/openssh/dist/packet.c Tue Jan 20 22:13:19 2015 +0000
+++ b/crypto/external/bsd/openssh/dist/packet.c Wed Jan 21 02:05:47 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: packet.c,v 1.14 2014/10/20 03:05:13 christos Exp $ */
+/* $NetBSD: packet.c,v 1.15 2015/01/21 02:05:47 christos Exp $ */
/* $OpenBSD: packet.c,v 1.198 2014/07/15 15:54:14 millert Exp $ */
/*
* Author: Tatu Ylonen <ylo%cs.hut.fi@localhost>
@@ -39,7 +39,7 @@
*/
#include "includes.h"
-__RCSID("$NetBSD: packet.c,v 1.14 2014/10/20 03:05:13 christos Exp $");
+__RCSID("$NetBSD: packet.c,v 1.15 2015/01/21 02:05:47 christos Exp $");
#include <sys/types.h>
#include <sys/queue.h>
#include <sys/socket.h>
@@ -944,7 +944,7 @@
len, padlen, aadlen));
/* compute MAC over seqnr and packet(length fields, payload, padding) */
-debug("mac %p, %d %d\n", mac, mac? mac->enabled : -1, mac ? mac->etm : -1);
+debug("mac %p, %d %d", mac, mac? mac->enabled : -1, mac ? mac->etm : -1);
if (mac && mac->enabled && !mac->etm) {
macbuf = mac_compute(mac, active_state->p_send.seqnr,
buffer_ptr(&active_state->outgoing_packet), len);
Home |
Main Index |
Thread Index |
Old Index