summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh.c b/ssh.c
index be2ba4469..c2faf3882 100644
--- a/ssh.c
+++ b/ssh.c
@@ -11,7 +11,7 @@
11 */ 11 */
12 12
13#include "includes.h" 13#include "includes.h"
14RCSID("$OpenBSD: ssh.c,v 1.56 2000/06/20 01:39:44 markus Exp $"); 14RCSID("$OpenBSD: ssh.c,v 1.57 2000/07/15 04:01:37 djm Exp $");
15 15
16#include <openssl/evp.h> 16#include <openssl/evp.h>
17#include <openssl/dsa.h> 17#include <openssl/dsa.h>
@@ -622,7 +622,7 @@ main(int ac, char **av)
622 */ 622 */
623 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, SSH_USER_DIR); 623 snprintf(buf, sizeof buf, "%.100s/%.100s", pw->pw_dir, SSH_USER_DIR);
624 if (stat(buf, &st) < 0) 624 if (stat(buf, &st) < 0)
625 if (mkdir(buf, 0755) < 0) 625 if (mkdir(buf, 0700) < 0)
626 error("Could not create directory '%.200s'.", buf); 626 error("Could not create directory '%.200s'.", buf);
627 627
628 /* Check if the connection failed, and try "rsh" if appropriate. */ 628 /* Check if the connection failed, and try "rsh" if appropriate. */