Skip to content

Commit

Permalink
* inifile.c: proxy_server variable parsing. Thanks <jesus.sanchez…
Browse files Browse the repository at this point in the history
[email protected]> for the bug-hunting and testing
  • Loading branch information
mezantrop committed Sep 4, 2024
1 parent 86f8ee6 commit ee0010c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# CHANGELOG

* **2024.09.01 Current**
* `inifile.c`: `proxy_server` variable parsing. Thanks <[email protected]> for the bug-hunting and testing
* `GUI-Warp.app`: `starter.c` to handle environment variables
* `minmiconf`: Updated to version `1.1.1.0`
* `configure`: Added lost paths check for macOS SDK directories
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* Gema Robles <[email protected]>
* Gleb Reys <[email protected]>
* Hanno Rathmann <[email protected]>
* Jesus Sanchez <[email protected]>
* Juha Nurmela
* Luis Pontes <[email protected]>
* Matt Reba
Expand Down
2 changes: 1 addition & 1 deletion inifile.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ ini_section *read_ini(char *ifile_name) {
entry.val2 = strsep(&s, "/"); /* val2 */
/* val1 token round two parsing */
s = entry.val1;
entry.val1 = strsep(&s, ":-"); /* val1 clean */
entry.val1 = strsep(&s, ":"); /* val1 clean */
entry.mod1 = strsep(&s, ":-"); /* mod1 optional */
entry.mod2 = strsep(&s, ":-"); /* mod2 optional */

Expand Down

0 comments on commit ee0010c

Please sign in to comment.