diff options
author | Keith Vetter <keithv@fusion.com> | 1995-07-06 01:39:47 +0000 |
---|---|---|
committer | Keith Vetter <keithv@fusion.com> | 1995-07-06 01:39:47 +0000 |
commit | ad04b0224f8ba5209ca25ad3d94a24d0cf3dae06 (patch) | |
tree | 6ac5e2e057c1c05f099d6c4eedefc732a6aaa95b /src/slave/kprop.c | |
parent | c2e72b506ff5ea2b92f026be2bfaff1851c87432 (diff) | |
download | krb5-ad04b0224f8ba5209ca25ad3d94a24d0cf3dae06.tar.gz krb5-ad04b0224f8ba5209ca25ad3d94a24d0cf3dae06.tar.xz krb5-ad04b0224f8ba5209ca25ad3d94a24d0cf3dae06.zip |
Changes for Macintosh implementation
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6229 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/slave/kprop.c')
-rw-r--r-- | src/slave/kprop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slave/kprop.c b/src/slave/kprop.c index de32fddd1a..a300ef303e 100644 --- a/src/slave/kprop.c +++ b/src/slave/kprop.c @@ -718,7 +718,7 @@ void update_last_prop_file(hostname, file_name) strcat(file_last_prop, "."); strcat(file_last_prop, hostname); strcat(file_last_prop, last_prop); - if ((fd = open(file_last_prop, O_WRONLY|O_CREAT|O_TRUNC, 0600)) < 0) { + if ((fd = THREEPARAMOPEN(file_last_prop, O_WRONLY|O_CREAT|O_TRUNC, 0600)) < 0) { com_err(progname, errno, "while creating 'last_prop' file, '%s'", file_last_prop); |