comparison svr-main.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 005530560594
children 67fbba2c2a85
comparison
equal deleted inserted replaced
593:ea103e4476ce 594:a98a2138364a
263 fork_ret = 0; 263 fork_ret = 0;
264 #else 264 #else
265 fork_ret = fork(); 265 fork_ret = fork();
266 #endif 266 #endif
267 if (fork_ret < 0) { 267 if (fork_ret < 0) {
268 dropbear_log(LOG_WARNING, "error forking: %s", strerror(errno)); 268 dropbear_log(LOG_WARNING, "Error forking: %s", strerror(errno));
269 goto out; 269 goto out;
270 270
271 } else if (fork_ret > 0) { 271 } else if (fork_ret > 0) {
272 272
273 /* parent */ 273 /* parent */