From: Adam Dickmeiss Date: Sat, 29 Apr 2006 08:47:40 +0000 (+0000) Subject: Fixed bug #569: Some options throws unknown exception. X-Git-Tag: METAPROXY.1.0.3~24 X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=ef8d07cc801049c2b60fa81d289d1335a7394b3b;p=metaproxy-moved-to-github.git Fixed bug #569: Some options throws unknown exception. --- diff --git a/src/metaproxy_prog.cpp b/src/metaproxy_prog.cpp index 01f206b..d6f8251 100644 --- a/src/metaproxy_prog.cpp +++ b/src/metaproxy_prog.cpp @@ -1,4 +1,4 @@ -/* $Id: metaproxy_prog.cpp,v 1.2 2006-04-29 08:44:58 adam Exp $ +/* $Id: metaproxy_prog.cpp,v 1.3 2006-04-29 08:47:40 adam Exp $ Copyright (c) 2005-2006, Index Data. %LICENSE% @@ -35,7 +35,7 @@ int main(int argc, char **argv) po::variables_map vm; po::store(po::command_line_parser(argc, argv). options(desc).positional(p).run(), vm); - po::notify(vm); + po::notify(vm); if (vm.count("help")) { std::cout << desc << "\n";