summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sshd.c b/sshd.c
index 8a7ec6b8e..ca2d4d1bc 100644
--- a/sshd.c
+++ b/sshd.c
@@ -42,7 +42,7 @@
42 */ 42 */
43 43
44#include "includes.h" 44#include "includes.h"
45RCSID("$OpenBSD: sshd.c,v 1.261 2002/11/07 16:28:47 markus Exp $"); 45RCSID("$OpenBSD: sshd.c,v 1.262 2003/01/27 17:06:31 markus Exp $");
46 46
47#include <openssl/dh.h> 47#include <openssl/dh.h>
48#include <openssl/bn.h> 48#include <openssl/bn.h>
@@ -1066,8 +1066,8 @@ main(int ac, char **av)
1066#else 1066#else
1067 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0) 1067 if (st.st_uid != 0 || (st.st_mode & (S_IWGRP|S_IWOTH)) != 0)
1068#endif 1068#endif
1069 fatal("Bad owner or mode for %s", 1069 fatal("%s must be owned by root and not group or "
1070 _PATH_PRIVSEP_CHROOT_DIR); 1070 "world-writable.", _PATH_PRIVSEP_CHROOT_DIR);
1071 } 1071 }
1072 1072
1073 /* Configuration looks good, so exit if in test mode. */ 1073 /* Configuration looks good, so exit if in test mode. */