mirror of
https://github.com/yuzu-emu/breakpad
synced 2024-11-23 19:13:35 +00:00
Reconfigured options for sym_upload to not treat h and ? flags as invalid options.
I'm submitting this on behalf of Andrew Liu. R=mmandlis@chromium.org Review URL: https://codereview.chromium.org/1196733004 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1462 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
11004944ad
commit
3c3c6680d3
1 changed files with 5 additions and 0 deletions
|
@ -192,6 +192,11 @@ SetupOptions(int argc, const char *argv[], Options *options) {
|
|||
|
||||
while ((ch = getopt(argc, (char * const *)argv, "u:v:x:h?")) != -1) {
|
||||
switch (ch) {
|
||||
case 'h':
|
||||
case '?':
|
||||
Usage(argc, argv);
|
||||
exit(0);
|
||||
break;
|
||||
case 'u':
|
||||
options->proxy_user_pwd = optarg;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue