From ed79abed76fd91231929100ca3421913827ba83f Mon Sep 17 00:00:00 2001
From: Matt Johnston <matt@ucc.asn.au>
Date: Sun, 2 Nov 2008 12:01:39 +0000
Subject: [PATCH] Don't use // style comments

--HG--
extra : convert_revision : c92c7b4fef739b505d9842b45a393e1089097e3b
---
 common-channel.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/common-channel.c b/common-channel.c
index 21051841..93a76d17 100644
--- a/common-channel.c
+++ b/common-channel.c
@@ -276,10 +276,10 @@ static void check_close(struct Channel *channel) {
 		channel->flushing = 1;
 	}
 	
-	// if a type-specific check_close is defined we will only exit
-	// once that has been triggered. this is only used for a server "session"
-	// channel, to ensure that the shell has exited (and the exit status 
-	// retrieved) before we close things up.	
+	/* if a type-specific check_close is defined we will only exit
+	   once that has been triggered. this is only used for a server "session"
+	   channel, to ensure that the shell has exited (and the exit status 
+	   retrieved) before we close things up. */
 	if (!channel->type->check_close	
 			|| channel->type->check_close(channel)) {
 		close_allowed = 1;
-- 
GitLab