From: <spo...@us...> - 2007-07-05 21:28:11
|
Revision: 618 http://svn.sourceforge.net/opengate/?rev=618&view=rev Author: spom_spom Date: 2007-07-05 14:28:12 -0700 (Thu, 05 Jul 2007) Log Message: ----------- fixed -c flag Modified Paths: -------------- branches/ogsector/src/opengateclient.cpp Modified: branches/ogsector/src/opengateclient.cpp =================================================================== --- branches/ogsector/src/opengateclient.cpp 2007-07-05 21:26:35 UTC (rev 617) +++ branches/ogsector/src/opengateclient.cpp 2007-07-05 21:28:12 UTC (rev 618) @@ -53,6 +53,7 @@ {"no-config", no_argument, &option_dialog, 0}, /* These options don't set a flag. We distinguish them by their indices. */ {"help", no_argument, 0, 'h'}, + {"Metaserver", no_argument, 0, 'M'}, {"username", required_argument, 0, 'u'}, {"password", required_argument, 0, 'p'}, {"server", required_argument, 0, 's'}, @@ -74,6 +75,7 @@ if ( optarg ) printf (" with arg %s", optarg); printf ("\n"); break; + case 'c': option_dialog = true; break; case 'h': #ifdef PACKAGE_NAME std::cout << PACKAGE_NAME << std::endl; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |