Commit 2484b6d2 by Richard Stallman

(process_command): Discard after first space in spec_version.

From-SVN: r2583
parent f6adcfdc
......@@ -1801,7 +1801,11 @@ process_command (argc, argv)
n_switches = 0;
n_infiles = 0;
spec_version = version_string;
/* Default for -V is our version number, ending at first space. */
spec_version = save_string (version_string, strlen (version_string));
for (temp = spec_version; *temp && *temp != ' '; temp++);
if (*temp) *temp = '\0';
/* Set up the default search paths. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment