Skip to content

Commit 76a664d

Browse files
committed
ts-warp.c: Typo errors fixed
1 parent 0d7b032 commit 76a664d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# CHANGELOG
22

3-
* **2025.11.02 Current**
3+
* **2025.11.14 Current**
4+
* `ts-warp.c`: Typo errors fixed
45
* `git`: Performed `git-filter-repo` to clean garbage.
56
* `configure`: Use `xcrun` to detect MacOS SDK path. Fixes the [Issue](https://github.com/mezantrop/ts-warp/issues/14)
67
* `gui-warp.app`: More friendly `ts-warp.sh` for CLI execution on `MacOS`

ts-warp.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,7 @@ All parameters are optional:
12151215
break;
12161216
}
12171217
if (rec == -1) {
1218-
printl(LOG_CRIT, "Error receving data from the client");
1218+
printl(LOG_CRIT, "Error receiving data from the client");
12191219
break;
12201220
}
12211221

@@ -1287,7 +1287,7 @@ All parameters are optional:
12871287
break;
12881288
}
12891289
if (rec == -1) {
1290-
printl(LOG_CRIT, "Error receving data from the client");
1290+
printl(LOG_CRIT, "Error receiving data from the client");
12911291
break;
12921292
}
12931293

@@ -1325,7 +1325,7 @@ All parameters are optional:
13251325
break;
13261326
}
13271327
if (rec == -1) {
1328-
printl(LOG_CRIT, "Error receving data from proxy server");
1328+
printl(LOG_CRIT, "Error receiving data from proxy server");
13291329
break;
13301330
}
13311331
while ((snd = send(csock, buf, rec, 0)) == 0) {

0 commit comments

Comments
 (0)