From: Chris Provenzano Date: Wed, 16 Aug 1995 07:27:06 +0000 (+0000) Subject: krb5_lock_file(), krb5_unlock_file(): X-Git-Tag: krb5-1.0-beta6~1304 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a238c6f8beba2b9a81f9a9e4082e510c0f154bfe;p=krb5.git krb5_lock_file(), krb5_unlock_file(): Use fds instead of FILE *s and don't pass the filename. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6535 dc483132-0cff-0310-8789-dd5450dbe970 --- 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 + + * 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 * 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 ,