From 33ffb56699279fbe303872628e5aa8c60a7a92a1 Mon Sep 17 00:00:00 2001 From: jbasney Date: Mon, 12 Feb 2007 21:05:53 +0000 Subject: [PATCH] replace C++ style comments with C style --- openssh/buffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openssh/buffer.c b/openssh/buffer.c index 9d39b0e..705155c 100644 --- a/openssh/buffer.c +++ b/openssh/buffer.c @@ -129,7 +129,7 @@ restart: if (buffer_compact(buffer)) goto restart; - // if hpn is disabled use the smaller buffer size + /* if hpn is disabled use the smaller buffer size */ buf_max = BUFFER_MAX_LEN_HPN; buf_alloc_sz = BUFFER_ALLOCSZ_HPN; @@ -166,7 +166,7 @@ buffer_check_alloc(Buffer *buffer, u_int len) if (buffer_compact(buffer)) goto restart; - // if hpn is disabled use the smaller buffer size + /* if hpn is disabled use the smaller buffer size */ buf_max = BUFFER_MAX_LEN_HPN; buf_alloc_sz = BUFFER_ALLOCSZ_HPN; -- 2.45.1