Overview
Comment: | utils: Fix %c instead of %C for short options |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
bb4026082a684d6cd5f5bc6efefe1cc1 |
User & Date: | js on 2023-04-11 18:42:27 |
Other Links: | manifest | tags |
Context
2023-04-11
| ||
19:20 | Add utils/ofatalkcfg check-in: 77d211a25a user: js tags: trunk | |
18:42 | utils: Fix %c instead of %C for short options check-in: bb4026082a user: js tags: trunk | |
2023-04-10
| ||
19:22 | Remove OFSerialization check-in: 6ce0093f8d user: js tags: trunk | |
Changes
Modified utils/ofhash/OFHash.m from [6e47a90bda] to [5b3e61635c].
︙ | ︙ | |||
110 111 112 113 114 115 116 | [OFStdErr writeLine: OF_LOCALIZED(@"unknown_long_option", @"%[prog]: Unknown option: --%[opt]", @"prog", [OFApplication programName], @"opt", optionsParser.lastLongOption)]; else { OFString *optStr = [OFString stringWithFormat: | | | 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | [OFStdErr writeLine: OF_LOCALIZED(@"unknown_long_option", @"%[prog]: Unknown option: --%[opt]", @"prog", [OFApplication programName], @"opt", optionsParser.lastLongOption)]; else { OFString *optStr = [OFString stringWithFormat: @"%C", optionsParser.lastOption]; [OFStdErr writeLine: OF_LOCALIZED(@"unknown_option", @"%[prog]: Unknown option: -%[opt]", @"prog", [OFApplication programName], @"opt", optStr)]; } |
︙ | ︙ |
Modified utils/ofhttp/OFHTTP.m from [1fcffa7dee] to [22d5583cf6].
︙ | ︙ | |||
484 485 486 487 488 489 490 | OF_LOCALIZED(@"long_argument_missing", @"%[prog]: Argument for option --%[opt] " @"missing" @"prog", [OFApplication programName], @"opt", optionsParser.lastLongOption)]; else { OFString *optStr = [OFString | | | 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 | OF_LOCALIZED(@"long_argument_missing", @"%[prog]: Argument for option --%[opt] " @"missing" @"prog", [OFApplication programName], @"opt", optionsParser.lastLongOption)]; else { OFString *optStr = [OFString stringWithFormat: @"%C", optionsParser.lastOption]; [OFStdErr writeLine: OF_LOCALIZED(@"argument_missing", @"%[prog]: Argument for option -%[opt] " @"missing", @"prog", [OFApplication programName], @"opt", optStr)]; |
︙ | ︙ | |||
514 515 516 517 518 519 520 | [OFStdErr writeLine: OF_LOCALIZED(@"unknown_long_option", @"%[prog]: Unknown option: --%[opt]", @"prog", [OFApplication programName], @"opt", optionsParser.lastLongOption)]; else { OFString *optStr = [OFString | | | 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 | [OFStdErr writeLine: OF_LOCALIZED(@"unknown_long_option", @"%[prog]: Unknown option: --%[opt]", @"prog", [OFApplication programName], @"opt", optionsParser.lastLongOption)]; else { OFString *optStr = [OFString stringWithFormat: @"%C", optionsParser.lastOption]; [OFStdErr writeLine: OF_LOCALIZED(@"unknown_option", @"%[prog]: Unknown option: -%[opt]", @"prog", [OFApplication programName], @"opt", optStr)]; } |
︙ | ︙ |