# HG changeset patch # User Matt Johnston # Date 1225627299 0 # Node ID 950c38b854a137f6e046f4b188c2b3102830ad64 # Parent 0cdbc95bb3d22ef08d0bb555b000eee90e3558a5 Don't use // style comments diff -r 0cdbc95bb3d2 -r 950c38b854a1 common-channel.c --- a/common-channel.c Mon Sep 29 14:30:47 2008 +0000 +++ b/common-channel.c Sun Nov 02 12:01:39 2008 +0000 @@ -276,10 +276,10 @@ 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;