diff 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
line wrap: on
line diff
--- a/svr-main.c	Wed Feb 23 15:10:31 2011 +0000
+++ b/svr-main.c	Wed Feb 23 15:50:30 2011 +0000
@@ -265,7 +265,7 @@
 			fork_ret = fork();
 #endif
 			if (fork_ret < 0) {
-				dropbear_log(LOG_WARNING, "error forking: %s", strerror(errno));
+				dropbear_log(LOG_WARNING, "Error forking: %s", strerror(errno));
 				goto out;
 
 			} else if (fork_ret > 0) {