diff --git a/CHANGELOG.md b/CHANGELOG.md index d7746f1..9e1ccea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ # CHANGELOG * **2024.02.21 Current** + * `ts-warp.c`: Prevent `HTTP`-port overwriting `TRANSPARENT`-port * `build.sh` when makind `gui-warp.app` downloads/builds static SSL and SSH2 libraries `WITH_LIBSSH2=1 sh ./build.sh` * `SSH2` proxy supported in any position of a `CHAIN` * `gui-warp.app`: on macOS deiconify from Dock; `LICENSE` file added to the application diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 36d8fc6..342d7fb 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -3,6 +3,7 @@ ## Testing, bug-hunting * Alicja Michalska +* András Dániel Árk @Deniel00 * Bart Couvreur * Gema Robles * Gleb Reys diff --git a/ts-warp.c b/ts-warp.c index c57f80f..0b82b9d 100644 --- a/ts-warp.c +++ b/ts-warp.c @@ -191,7 +191,7 @@ All parameters are optional: case 'H': /* Internal HTTP server IP/name */ haddr = strsep(&optarg, ":"); /* IP:PORT */ - if (optarg) tport = optarg; + if (optarg) hport = optarg; break; case 'c': /* INI-file */