svn commit: r247641 - stable/9/libexec/tftpd
Marius Strobl
marius at FreeBSD.org
Sat Mar 2 16:45:59 UTC 2013
Author: marius
Date: Sat Mar 2 16:45:58 2013
New Revision: 247641
URL: http://svnweb.freebsd.org/changeset/base/247641
Log:
MFC: r229780 (partial)
Spelling fixes for libexec/
Modified:
stable/9/libexec/tftpd/tftp-io.c
stable/9/libexec/tftpd/tftp-utils.h
Directory Properties:
stable/9/libexec/tftpd/ (props changed)
Modified: stable/9/libexec/tftpd/tftp-io.c
==============================================================================
--- stable/9/libexec/tftpd/tftp-io.c Sat Mar 2 16:43:28 2013 (r247640)
+++ stable/9/libexec/tftpd/tftp-io.c Sat Mar 2 16:45:58 2013 (r247641)
@@ -72,13 +72,13 @@ static 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); \
}
Modified: stable/9/libexec/tftpd/tftp-utils.h
==============================================================================
--- stable/9/libexec/tftpd/tftp-utils.h Sat Mar 2 16:43:28 2013 (r247640)
+++ stable/9/libexec/tftpd/tftp-utils.h Sat Mar 2 16:45:58 2013 (r247641)
@@ -36,11 +36,11 @@ __FBSDID("$FreeBSD$");
#define MAXPKTSIZE (MAXSEGSIZE + 4) /* Maximum size of the packet */
/* For the blksize option */
-#define BLKSIZE_MIN 8 /* Minumum size of the data segment */
+#define BLKSIZE_MIN 8 /* Minimum size of the data segment */
#define BLKSIZE_MAX MAXSEGSIZE /* Maximum size of the data segment */
/* For the timeout option */
-#define TIMEOUT_MIN 0 /* Minumum timeout value */
+#define TIMEOUT_MIN 0 /* Minimum timeout value */
#define TIMEOUT_MAX 255 /* Maximum timeout value */
#define MIN_TIMEOUTS 3
More information about the svn-src-stable-9
mailing list