diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/ChangeLog | 6 | ||||
| -rw-r--r-- | src/include/k5-int.h | 16 |
2 files changed, 13 insertions, 9 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog index 62c6d8d5f..068770f26 100644 --- a/src/include/ChangeLog +++ b/src/include/ChangeLog @@ -1,3 +1,9 @@ + +Wed Aug 16 02:45:19 1995 Chris Provenzano <proven@mit.edu> + + * k5-int.h (krb5_lock_file(), krb5_unlock_file()): + Use fds instead of FILE *s and don't pass the filename. + Fri Aug 4 23:04:06 1995 Tom Yu <tlyu@dragons-lair.MIT.EDU> * k5-int.h: Add prototypes for krb5_crypto_os_localaddr and diff --git a/src/include/k5-int.h b/src/include/k5-int.h index c6df14030..874ed517a 100644 --- a/src/include/k5-int.h +++ b/src/include/k5-int.h @@ -852,19 +852,17 @@ extern char *strdup KRB5_PROTOTYPE((const char *)); /* libos.spec */ krb5_error_code krb5_read_password KRB5_PROTOTYPE((krb5_context, - const char *, - const char *, - char *, - int * )); + const char *, + const char *, + char *, + int * )); krb5_error_code krb5_lock_file KRB5_PROTOTYPE((krb5_context, - FILE *, - char *, - int )); + int, + int)); krb5_error_code krb5_unlock_file KRB5_PROTOTYPE((krb5_context, - FILE *, - char * )); + int)); int krb5_net_read KRB5_PROTOTYPE((krb5_context, int , |
