Mercurial > dropbear
comparison common-channel.c @ 504:950c38b854a1
Don't use // style comments
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 02 Nov 2008 12:01:39 +0000 |
parents | cd02449b709c |
children | a3748e54273c |
comparison
equal
deleted
inserted
replaced
503:0cdbc95bb3d2 | 504:950c38b854a1 |
---|---|
274 && channel->type->check_close(channel)) | 274 && channel->type->check_close(channel)) |
275 { | 275 { |
276 channel->flushing = 1; | 276 channel->flushing = 1; |
277 } | 277 } |
278 | 278 |
279 // if a type-specific check_close is defined we will only exit | 279 /* if a type-specific check_close is defined we will only exit |
280 // once that has been triggered. this is only used for a server "session" | 280 once that has been triggered. this is only used for a server "session" |
281 // channel, to ensure that the shell has exited (and the exit status | 281 channel, to ensure that the shell has exited (and the exit status |
282 // retrieved) before we close things up. | 282 retrieved) before we close things up. */ |
283 if (!channel->type->check_close | 283 if (!channel->type->check_close |
284 || channel->type->check_close(channel)) { | 284 || channel->type->check_close(channel)) { |
285 close_allowed = 1; | 285 close_allowed = 1; |
286 } | 286 } |
287 | 287 |