diff options
author | mouring <mouring> | 2001-01-22 21:06:19 +0000 |
---|---|---|
committer | mouring <mouring> | 2001-01-22 21:06:19 +0000 |
commit | ef80e123950260fb571f90d6780253aa28318e86 (patch) | |
tree | ef48c311948cbe8b9885e49972cbfb7fbfb3df45 /entropy.c | |
parent | 87cd6512af3d0d9cfb35be59c9dab3ed783a56b4 (diff) | |
download | openssh-ef80e123950260fb571f90d6780253aa28318e86.tar.gz |
20010123
- (bal) regexp.h typo in configure.in. Should have been regex.h
- (bal) SSH_USER_DIR to _PATH_SSH_USER_DIR patch by stevesk@
Diffstat (limited to 'entropy.c')
-rw-r--r-- | entropy.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -35,9 +35,10 @@ #include "ssh.h" #include "xmalloc.h" #include "atomicio.h" +#include "pathnames.h" #include "log.h" -RCSID("$Id: entropy.c,v 1.24 2001/01/22 05:34:41 mouring Exp $"); +RCSID("$Id: entropy.c,v 1.25 2001/01/22 21:06:20 mouring Exp $"); #ifndef offsetof # define offsetof(type, member) ((size_t) &((type *)0)->member) @@ -560,7 +561,7 @@ prng_write_seedfile(void) { /* Try to ensure that the parent directory is there */ snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir, - SSH_USER_DIR); + _PATH_SSH_USER_DIR); mkdir(filename, 0700); snprintf(filename, sizeof(filename), "%.512s/%s", pw->pw_dir, |