Mercurial > dropbear
comparison cli-kex.c @ 731:9a5438271556
Move the more verbose TRACE() statements into TRACE2()
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 01 Apr 2013 00:07:26 +0800 |
parents | 0fd32a552ea5 |
children | 09c5eb71ec96 |
comparison
equal
deleted
inserted
replaced
730:714b9106e335 | 731:9a5438271556 |
---|---|
244 } | 244 } |
245 | 245 |
246 /* Compare hostnames */ | 246 /* Compare hostnames */ |
247 if (strncmp(cli_opts.remotehost, buf_getptr(line, hostlen), | 247 if (strncmp(cli_opts.remotehost, buf_getptr(line, hostlen), |
248 hostlen) != 0) { | 248 hostlen) != 0) { |
249 TRACE(("hosts don't match")) | 249 TRACE2(("hosts don't match")) |
250 continue; | 250 continue; |
251 } | 251 } |
252 | 252 |
253 buf_incrpos(line, hostlen); | 253 buf_incrpos(line, hostlen); |
254 if (buf_getbyte(line) != ' ') { | 254 if (buf_getbyte(line) != ' ') { |