summaryrefslogtreecommitdiffstats
path: root/libexec/tftpd/tftp-io.c
diff options
context:
space:
mode:
authoruqs <uqs@FreeBSD.org>2012-01-07 16:09:54 +0000
committeruqs <uqs@FreeBSD.org>2012-01-07 16:09:54 +0000
commit8ecda3ab53f0cdd019e147f8831fd080cb96db33 (patch)
tree6b1a6cc6157b12184a6808e335431115997338af /libexec/tftpd/tftp-io.c
parent92c988259b32f3f2bdff1460789c7321216a54d0 (diff)
downloadFreeBSD-src-8ecda3ab53f0cdd019e147f8831fd080cb96db33.zip
FreeBSD-src-8ecda3ab53f0cdd019e147f8831fd080cb96db33.tar.gz
Spelling fixes for libexec/
Diffstat (limited to 'libexec/tftpd/tftp-io.c')
-rw-r--r--libexec/tftpd/tftp-io.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/tftpd/tftp-io.c b/libexec/tftpd/tftp-io.c
index 17eabcb..b396134 100644
--- a/libexec/tftpd/tftp-io.c
+++ b/libexec/tftpd/tftp-io.c
@@ -72,13 +72,13 @@ struct errmsg {
#define DROPPACKET(s) \
if (packetdroppercentage != 0 && \
random()%100 < packetdroppercentage) { \
- tftp_log(LOG_DEBUG, "Artifical packet drop in %s", s); \
+ tftp_log(LOG_DEBUG, "Artificial packet drop in %s", s); \
return; \
}
#define DROPPACKETn(s,n) \
if (packetdroppercentage != 0 && \
random()%100 < packetdroppercentage) { \
- tftp_log(LOG_DEBUG, "Artifical packet drop in %s", s); \
+ tftp_log(LOG_DEBUG, "Artificial packet drop in %s", s); \
return (n); \
}
OpenPOWER on IntegriCloud