* gss_libinit.c: Changed USE_HARDCODED_FALLBACK_ERROR_TABLES macro to !USE_BUNDLE_ERR...
authorAlexandra Ellwood <lxs@mit.edu>
Fri, 7 Mar 2003 21:22:49 +0000 (21:22 +0000)
committerAlexandra Ellwood <lxs@mit.edu>
Fri, 7 Mar 2003 21:22:49 +0000 (21:22 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15266 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/gssapi/ChangeLog
src/lib/gssapi/gss_libinit.c

index 27dba4b5493a322a8094ffedda25cf575fb6562b..fa2832e0b0218346564e897a5055903bd0496351 100644 (file)
@@ -1,3 +1,9 @@
+2003-03-07  Alexandra Ellwood  <lxs@mit.edu>
+
+    * gss_libinit.c: Changed USE_HARDCODED_FALLBACK_ERROR_TABLES macro 
+    to !USE_BUNDLE_ERROR_STRINGS so Darwin based builds get com_err
+    style error tables.
+
 2003-03-06  Alexandra Ellwood  <lxs@mit.edu>
 
     * gss_libinit.c: Removed Mac header goober.
index 51d2cb154f1672c0403ea2e3d3b4c4a61d8550bf..7906786e9579fdd88118a2a53e1a3013d2cd9e32 100644 (file)
@@ -16,7 +16,7 @@ OM_uint32 gssint_initialize_library (void)
 {
        
        if (!initialized) {
-#if !TARGET_OS_MAC || USE_HARDCODED_FALLBACK_ERROR_TABLES
+#if !USE_BUNDLE_ERROR_STRINGS
            add_error_table(&et_k5g_error_table);
            add_error_table(&et_ggss_error_table);
 #endif
@@ -39,7 +39,7 @@ void gssint_cleanup_library (void)
        
        (void) kg_release_defcred (&min_stat);
        
-#if !TARGET_OS_MAC || USE_HARDCODED_FALLBACK_ERROR_TABLES
+#if !USE_BUNDLE_ERROR_STRINGS
        remove_error_table(&et_k5g_error_table);
        remove_error_table(&et_ggss_error_table);
 #endif