comparison common-algo.c @ 234:b3cca2d9ee3c

Increase algorithm list buffer length
author Matt Johnston <matt@ucc.asn.au>
date Fri, 02 Sep 2005 07:14:50 +0000
parents 16f552859ee6
children c3dbd3e1a8ce ea5189f97cfd
comparison
equal deleted inserted replaced
233:225e6822ef53 234:b3cca2d9ee3c
208 208
209 /* Output a comma separated list of algorithms to a buffer */ 209 /* Output a comma separated list of algorithms to a buffer */
210 void buf_put_algolist(buffer * buf, algo_type localalgos[]) { 210 void buf_put_algolist(buffer * buf, algo_type localalgos[]) {
211 211
212 unsigned int pos = 0, i, len; 212 unsigned int pos = 0, i, len;
213 char str[50]; /* enough for local algo storage */ 213 char str[MAX_ALGO_LIST_LEN];
214 214
215 for (i = 0; localalgos[i].name != NULL; i++) { 215 for (i = 0; localalgos[i].name != NULL; i++) {
216 if (localalgos[i].usable) { 216 if (localalgos[i].usable) {
217 /* Avoid generating a trailing comma */ 217 /* Avoid generating a trailing comma */
218 if (pos) 218 if (pos)