From: <suc...@us...> - 2006-07-30 18:04:48
|
Revision: 166 Author: sucknblow Date: 2006-07-30 11:04:41 -0700 (Sun, 30 Jul 2006) ViewCVS: http://svn.sourceforge.net/pmplib/?rev=166&view=rev Log Message: ----------- Fix crash with -z option. Modified Paths: -------------- trunk/pmplib/frontend/easypmp/cui/option.c Modified: trunk/pmplib/frontend/easypmp/cui/option.c =================================================================== --- trunk/pmplib/frontend/easypmp/cui/option.c 2006-07-30 08:00:38 UTC (rev 165) +++ trunk/pmplib/frontend/easypmp/cui/option.c 2006-07-30 18:04:41 UTC (rev 166) @@ -173,9 +173,9 @@ {NULL, 0, 0, 0} }; #ifndef _WIN32 - int c = getopt_long(argc, argv, "cuzRL:t:pmrfsjld:e:w:vh", long_options, &option_index); + int c = getopt_long(argc, argv, "cuz:RL:t:pmrfsjld:e:w:vh", long_options, &option_index); #else - int c = getopt_long(argc, argv, "cuzRL:t:pmrfsjld:vh", long_options, &option_index); + int c = getopt_long(argc, argv, "cuz:RL:t:pmrfsjld:vh", long_options, &option_index); #endif/*_WIN32*/ if (c == -1) { break; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |