From b1998a875c32e181abb41601c0d7a6710b7688b4 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Sat, 22 Apr 2006 13:18:58 +0000 Subject: [PATCH] Fix fname for so file --- src/factory_filter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/factory_filter.cpp b/src/factory_filter.cpp index 5ba05bc..495321d 100644 --- a/src/factory_filter.cpp +++ b/src/factory_filter.cpp @@ -1,4 +1,4 @@ -/* $Id: factory_filter.cpp,v 1.4 2006-03-16 10:40:59 adam Exp $ +/* $Id: factory_filter.cpp,v 1.5 2006-04-22 13:18:58 adam Exp $ Copyright (c) 2005-2006, Index Data. %LICENSE% @@ -107,7 +107,7 @@ bool mp::FactoryFilter::add_creator_dl(const std::string &fi, return true; } - std::string full_path = path + "/metaproxy_1_filter_" + fi + ".so"; + std::string full_path = path + "/metaproxy_filter_" + fi + ".so"; void *dl_handle = dlopen(full_path.c_str(), RTLD_GLOBAL|RTLD_NOW); if (!dl_handle) { -- 1.7.10.4