all repos — fluxbox @ 5eb658a51fbe8fdb4efdc9379f1bc5bffe86931c

custom fork of the fluxbox windowmanager

fixed a bug in parsing cli, thanks to steven kah hien wong <steven at zensaki dot com>
mathias mathias
commit

5eb658a51fbe8fdb4efdc9379f1bc5bffe86931c

parent

35605d9c778b4b8aa8aaa39c059ea958dc0f196b

2 files changed, 10 insertions(+), 5 deletions(-)

jump to
M ChangeLogChangeLog

@@ -1,5 +1,9 @@

(Format: Year/Month/Day) Changes for 1.0.0: +*07/04/24: + * Fixed a bug in parsing cli (Mathias, thanks to Steven Kah Hien Wong <steven at + zensaki dot com> for pointing out the issue) + src/main.cc *07/04/23: * Use asciidoc-generated manpages as the default from now on (Mathias) * Disabled resizing shaded windows (Mark)
M src/main.ccsrc/main.cc

@@ -181,7 +181,7 @@ }

int main(int argc, char **argv) { - string session_display = ""; + string session_display(""); string rc_file; string log_filename;

@@ -200,7 +200,7 @@ "error: '-rc' requires an argument", "the -rc option requires a file argument")<<endl;

exit(EXIT_FAILURE); } - rc_file = arg; + rc_file = argv[i]; } else if (arg == "-display") { // check for -display option... to run on a display other than the one // set by the environment variable DISPLAY

@@ -212,7 +212,7 @@ "")<<endl;

exit(EXIT_FAILURE); } - session_display = arg; + session_display = argv[i]; string display_env = "DISPLAY=" + session_display; if (putenv(const_cast<char *>(display_env.c_str()))) { cerr<<_FB_CONSOLETEXT(main, WarnDisplayEnv,

@@ -225,11 +225,11 @@ // print current version string

cout << "Fluxbox " << __fluxbox_version << " : (c) 2001-2007 Henrik Kinnunen " << endl << endl; exit(EXIT_SUCCESS); } else if (arg == "-log") { - if (i + 1 >= argc) { + if (++i >= argc) { cerr<<_FB_CONSOLETEXT(main, LOGRequiresArg, "error: '-log' needs an argument", "")<<endl; exit(EXIT_FAILURE); } - log_filename = argv[++i]; + log_filename = argv[i]; } else if (arg == "-help" || arg == "-h") { // print program usage and command line options printf(_FB_CONSOLETEXT(main, Usage,

@@ -338,3 +338,4 @@ }

return exitcode; } +