This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-net.git
The following commit(s) were added to refs/heads/master by this push:
new 33b5327d Fix spelling
33b5327d is described below
commit 33b5327d2ba9cf569529ab18d6a8ab49077dfb35
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Dec 4 06:51:36 2025 -0500
Fix spelling
---
src/test/java/org/apache/commons/net/tftp/TFTPServer.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/test/java/org/apache/commons/net/tftp/TFTPServer.java
b/src/test/java/org/apache/commons/net/tftp/TFTPServer.java
index 1e252108..1558e094 100644
--- a/src/test/java/org/apache/commons/net/tftp/TFTPServer.java
+++ b/src/test/java/org/apache/commons/net/tftp/TFTPServer.java
@@ -224,7 +224,7 @@ public class TFTPServer implements Runnable, AutoCloseable {
final TFTPAckPacket ack = (TFTPAckPacket) answer;
if (ack.getBlockNumber() != block) {
/*
- * The origional tftp spec would have called on us to
resend the previous data here, however, that causes the SAS Syndrome.
+ * The original TFTP spec would have called on us to
resend the previous data here, however, that causes the SAS Syndrome.
* https://datatracker.ietf.org/doc/html/rfc1123
section 4.2.3.1 The modified spec says that we ignore a duplicate ack. If the
packet was really
* lost, we will time out on receive, and resend the
previous data at that point.
*/