summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2009-01-26 07:54:07 -0500
committerAdam Jackson <ajax@redhat.com>2009-02-04 22:44:16 -0500
commit910a1e88d23e0b7e4ca4679ab50a883a918f2590 (patch)
tree5b1a3e829bad86d766e8f41313743a0354f3af95
parent366f23c6eb504fc23112f121769bcb719948474f (diff)
loader: Remove a vestige of archive support
-rw-r--r--hw/xfree86/loader/loader.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/hw/xfree86/loader/loader.c b/hw/xfree86/loader/loader.c
index 5bd221f01..ab7736254 100644
--- a/hw/xfree86/loader/loader.c
+++ b/hw/xfree86/loader/loader.c
@@ -304,10 +304,7 @@ LoaderUnload(int handle)
*/
while ((tmp = _LoaderListPop(handle)) != NULL) {
- if (strchr(tmp->name, ':') == NULL) {
- /* It is not a member of an archive */
- xf86Msg(X_INFO, "Unloading %s\n", tmp->name);
- }
+ xf86Msg(X_INFO, "Unloading %s\n", tmp->name);
DLUnloadModule(tmp->private);
free(tmp->name);
free(tmp->cname);