Don't use // style comments

--HG--
extra : convert_revision : c92c7b4fef739b505d9842b45a393e1089097e3b
This commit is contained in:
Matt Johnston 2008-11-02 12:01:39 +00:00
parent c2bd79131a
commit ed79abed76

View File

@ -276,10 +276,10 @@ static void check_close(struct Channel *channel) {
channel->flushing = 1; channel->flushing = 1;
} }
// if a type-specific check_close is defined we will only exit /* 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" 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 channel, to ensure that the shell has exited (and the exit status
// retrieved) before we close things up. retrieved) before we close things up. */
if (!channel->type->check_close if (!channel->type->check_close
|| channel->type->check_close(channel)) { || channel->type->check_close(channel)) {
close_allowed = 1; close_allowed = 1;