From: Adam Dickmeiss Date: Sat, 22 Apr 2006 13:18:58 +0000 (+0000) Subject: Fix fname for so file X-Git-Tag: METAPROXY.1.0.0~7 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=b1998a875c32e181abb41601c0d7a6710b7688b4;p=metaproxy-moved-to-github.git Fix fname for so file --- 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) {