svn rev #24827: trunk/src/util/support/
ghudson@MIT.EDU
ghudson at MIT.EDU
Sun Apr 3 08:34:43 EDT 2011
http://src.mit.edu/fisheye/changelog/krb5/?cs=24827
Commit By: ghudson
Log Message:
Revert r24815 and the RTLD_NODELETE part of r24744, which was
committed by accident.
Changed Files:
U trunk/src/util/support/plugins.c
Modified: trunk/src/util/support/plugins.c
===================================================================
--- trunk/src/util/support/plugins.c 2011-04-03 12:31:13 UTC (rev 24826)
+++ trunk/src/util/support/plugins.c 2011-04-03 12:34:43 UTC (rev 24827)
@@ -258,17 +258,9 @@
#endif /* USE_CFBUNDLE */
#ifdef RTLD_GROUP
-# ifdef RTLD_NODELETE
-# define PLUGIN_DLOPEN_FLAGS (RTLD_NOW | RTLD_LOCAL | RTLD_GROUP | RTLD_NODELETE)
-# else
-# define PLUGIN_DLOPEN_FLAGS (RTLD_NOW | RTLD_LOCAL | RTLD_GROUP)
-# endif
+#define PLUGIN_DLOPEN_FLAGS (RTLD_NOW | RTLD_LOCAL | RTLD_GROUP)
#else
-# ifdef RTLD_NODELETE
-# define PLUGIN_DLOPEN_FLAGS (RTLD_NOW | RTLD_LOCAL | RTLD_NODELETE)
-# else
-# define PLUGIN_DLOPEN_FLAGS (RTLD_NOW | RTLD_LOCAL)
-# endif
+#define PLUGIN_DLOPEN_FLAGS (RTLD_NOW | RTLD_LOCAL)
#endif
if (!err) {
handle = dlopen(filepath, PLUGIN_DLOPEN_FLAGS);
More information about the cvs-krb5
mailing list