From f6661aed442fc2cde87ad77fe965893d294ab958 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Thu, 13 Oct 2005 01:08:37 +0000 Subject: [PATCH] * Done -> done (for bootup consistency) * Error -> error --- etc/sshd | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/etc/sshd b/etc/sshd index 15c944c054..96c4a5681d 100755 --- a/etc/sshd +++ b/etc/sshd @@ -111,9 +111,9 @@ $status = mwexec("/usr/sbin/sshd"); if($status <> 0) { file_notice("sshd_startup", "SSHD failed to start.", "SSHD Daemon", ""); - echo "Error!\n"; + echo "error!\n"; } else { - echo "Done.\n"; + echo "done.\n"; } conf_mount_ro(); @@ -227,6 +227,6 @@ /* start sshd */ system("/usr/sbin/sshd"); - echo "Done.\n"; + echo "done.\n"; ?>