Mercurial > dropbear
comparison common-algo.c @ 594:a98a2138364a
Improve capitalisation for all logged strings
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 23 Feb 2011 15:50:30 +0000 |
parents | f9b5dc0cba61 |
children | 2895626d864f |
comparison
equal
deleted
inserted
replaced
593:ea103e4476ce | 594:a98a2138364a |
---|---|
228 }; | 228 }; |
229 int i; | 229 int i; |
230 | 230 |
231 for (i = 0; regciphers[i] != NULL; i++) { | 231 for (i = 0; regciphers[i] != NULL; i++) { |
232 if (register_cipher(regciphers[i]) == -1) { | 232 if (register_cipher(regciphers[i]) == -1) { |
233 dropbear_exit("error registering crypto"); | 233 dropbear_exit("Error registering crypto"); |
234 } | 234 } |
235 } | 235 } |
236 | 236 |
237 for (i = 0; reghashes[i] != NULL; i++) { | 237 for (i = 0; reghashes[i] != NULL; i++) { |
238 if (register_hash(reghashes[i]) == -1) { | 238 if (register_hash(reghashes[i]) == -1) { |
239 dropbear_exit("error registering crypto"); | 239 dropbear_exit("Error registering crypto"); |
240 } | 240 } |
241 } | 241 } |
242 } | 242 } |
243 | 243 |
244 /* algolen specifies the length of algo, algos is our local list to match | 244 /* algolen specifies the length of algo, algos is our local list to match |