From 910a1e88d23e0b7e4ca4679ab50a883a918f2590 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Mon, 26 Jan 2009 07:54:07 -0500 Subject: [PATCH] loader: Remove a vestige of archive support --- hw/xfree86/loader/loader.c | 5 +---- 1 file changed, 1 insertion(+), 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);