Mercurial > dropbear
comparison common-algo.c @ 1896:6cb6e81ca765
changed TRACE to DEBUG3 for dbclient
author | HansH111 <hans@atbas.org> |
---|---|
date | Sat, 19 Mar 2022 09:04:18 +0000 |
parents | d7247462fa0d |
children | 4a6725ac957c |
comparison
equal
deleted
inserted
replaced
1895:3bfacfc996cf | 1896:6cb6e81ca765 |
---|---|
461 *goodguess = 0; | 461 *goodguess = 0; |
462 } | 462 } |
463 | 463 |
464 /* get the comma-separated list from the buffer ie "algo1,algo2,algo3" */ | 464 /* get the comma-separated list from the buffer ie "algo1,algo2,algo3" */ |
465 algolist = buf_getstring(buf, &len); | 465 algolist = buf_getstring(buf, &len); |
466 TRACE(("buf_match_algo: %s", algolist)) | 466 DEBUG3(("buf_match_algo: %s", algolist)) |
467 remotecount = MAX_PROPOSED_ALGO; | 467 remotecount = MAX_PROPOSED_ALGO; |
468 get_algolist(algolist, len, remotenames, &remotecount); | 468 get_algolist(algolist, len, remotenames, &remotecount); |
469 | 469 |
470 for (i = 0; localalgos[i].name != NULL; i++) { | 470 for (i = 0; localalgos[i].name != NULL; i++) { |
471 if (localalgos[i].usable) { | 471 if (localalgos[i].usable) { |