diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/util/profile/ChangeLog | 6 | ||||
-rw-r--r-- | src/util/profile/profile.hin | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/util/profile/ChangeLog b/src/util/profile/ChangeLog index bd0dc6199a..8d50ef63b5 100644 --- a/src/util/profile/ChangeLog +++ b/src/util/profile/ChangeLog @@ -1,3 +1,9 @@ +Mon Mar 8 19:10:06 1999 Tom Yu <tlyu@mit.edu> + + * profile.hin: Fix prototype of profile_flush() to use long rather + than errcode_t to avoid breaking other stuff that includes + profile.h. + Mon Mar 8 14:38:24 1999 Theodore Y. Ts'o <tytso@mit.edu> * prof_tree.c (profile_node_iterator): Fix bug where it will loop diff --git a/src/util/profile/profile.hin b/src/util/profile/profile.hin index bbc2d0b16d..f203d91467 100644 --- a/src/util/profile/profile.hin +++ b/src/util/profile/profile.hin @@ -41,7 +41,7 @@ KRB5_DLLIMP long KRB5_CALLCONV profile_init KRB5_DLLIMP long KRB5_CALLCONV profile_init_path PROTOTYPE ((const char *filepath, profile_t *ret_profile)); -KRB5_DLLIMP errcode_t KRB5_CALLCONV profile_flush +KRB5_DLLIMP long KRB5_CALLCONV profile_flush PROTOTYPE ((profile_t profile)); KRB5_DLLIMP void KRB5_CALLCONV profile_release |