Mercurial > dropbear
comparison svr-algo.c @ 641:2b1bb792cd4d dropbear-tfm
- Update tfm changes to current default tip
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 21 Nov 2011 19:52:28 +0800 |
parents | 870c63519757 |
children | 3062da90dab8 |
comparison
equal
deleted
inserted
replaced
640:76097ec1a29a | 641:2b1bb792cd4d |
---|---|
66 if (algolist[i] == ',') { | 66 if (algolist[i] == ',') { |
67 algolist[i] = '\0'; | 67 algolist[i] = '\0'; |
68 remotealgos[count] = &algolist[i+1]; | 68 remotealgos[count] = &algolist[i+1]; |
69 count++; | 69 count++; |
70 } | 70 } |
71 if (count == MAX_PROPOSED_ALGO) { | 71 if (count >= MAX_PROPOSED_ALGO) { |
72 break; | 72 break; |
73 } | 73 } |
74 } | 74 } |
75 | 75 |
76 /* iterate and find the first match */ | 76 /* iterate and find the first match */ |