if () => if()

while () => while()
and some other minor re-indentings
This commit is contained in:
Daniel Stenberg 2007-11-07 09:21:35 +00:00
parent 33f7ac06c3
commit cbd1a77ec2
38 changed files with 356 additions and 351 deletions

View file

@ -1801,7 +1801,7 @@ static CURLcode ssh_easy_statemach(struct connectdata *conn)
struct ssh_conn *sshc = &conn->proto.sshc;
CURLcode result = CURLE_OK;
while (sshc->state != SSH_STOP) {
while(sshc->state != SSH_STOP) {
result = ssh_statemach_act(conn);
if(result) {
break;