* kprop.c: Write a byte to the last-prop file to ensure the file
authorRichard Basch <probe@mit.edu>
Tue, 12 Mar 1996 19:04:45 +0000 (19:04 +0000)
committerRichard Basch <probe@mit.edu>
Tue, 12 Mar 1996 19:04:45 +0000 (19:04 +0000)
modtime is updated.  Simply opening the file isn't sufficient.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7609 dc483132-0cff-0310-8789-dd5450dbe970

src/slave/ChangeLog
src/slave/kprop.c

index 179178171b25f119915c2f6165e56a700da23193..8c2eaa91844be9750cb606de1e605f69787f7694 100644 (file)
@@ -1,3 +1,8 @@
+Tue Mar 12 14:01:32 1996  Richard Basch  <basch@lehman.com>
+
+       * kprop.c: Write a byte to the last-prop file to ensure the file
+               modtime is updated.  Simply opening the file isn't sufficient.
+
 Wed Mar  6 16:15:46 1996  Richard Basch  <basch@lehman.com>
 
        * kprop.c: The credentials cache should be destroyed after any error.
index 9f8a2877213eec66858052d963a19a351424f126..c0c315cc4e7226bfad76e972b55995bfe70e4f75 100644 (file)
@@ -701,6 +701,7 @@ void update_last_prop_file(hostname, file_name)
                free(file_last_prop);
                return;
        }
+       write(fd, "", 1);
        free(file_last_prop);
        close(fd);
        return;