From: Alexandra Ellwood Date: Tue, 3 Aug 1999 19:33:10 +0000 (+0000) Subject: Added line to initialize profile->magic on the Macintosh because all of the other... X-Git-Tag: krb5-1.1-beta1~15 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=408d03e1fba6ab1bbd4b75cdf200ef64ba7f7ce8;p=krb5.git Added line to initialize profile->magic on the Macintosh because all of the other profile library functions check for it and do nothing if it isn't there git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@11614 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/util/profile/prof_file.c b/src/util/profile/prof_file.c index e8cbbd95d..53f4ab706 100644 --- a/src/util/profile/prof_file.c +++ b/src/util/profile/prof_file.c @@ -100,6 +100,7 @@ errcode_t profile_open_file(filespec, ret_prof) prf->magic = PROF_MAGIC_FILE; #else prf->filespec = filespec; + prf->magic = PROF_MAGIC_FILE; #endif retval = profile_update_file(prf);