summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorChris Provenzano <proven@mit.edu>1995-08-16 07:27:06 +0000
committerChris Provenzano <proven@mit.edu>1995-08-16 07:27:06 +0000
commita238c6f8beba2b9a81f9a9e4082e510c0f154bfe (patch)
treee7cbaa85de54d9c7b6222ba8b20679032682ccbc /src/include
parent326f1136d22d3d270d9a6db15788a32e5127ec3c (diff)
downloadkrb5-a238c6f8beba2b9a81f9a9e4082e510c0f154bfe.tar.gz
krb5-a238c6f8beba2b9a81f9a9e4082e510c0f154bfe.tar.xz
krb5-a238c6f8beba2b9a81f9a9e4082e510c0f154bfe.zip
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
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ChangeLog6
-rw-r--r--src/include/k5-int.h16
2 files changed, 13 insertions, 9 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog
index 62c6d8d5fb..068770f264 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 c6df14030c..874ed517a5 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 ,