diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2005-10-13 01:08:37 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2005-10-13 01:08:37 +0000 |
commit | f6661aed442fc2cde87ad77fe965893d294ab958 (patch) | |
tree | e7d426e564f0b909b3c1a13acdb81367ba3a747e | |
parent | 7370613f8b99d3cdc5d187698e162f420a084bc4 (diff) | |
download | pfsense-f6661aed442fc2cde87ad77fe965893d294ab958.zip pfsense-f6661aed442fc2cde87ad77fe965893d294ab958.tar.gz |
* Done -> done (for bootup consistency)
* Error -> error
-rwxr-xr-x | etc/sshd | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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"; ?> |