aboutsummaryrefslogtreecommitdiff
path: root/src/lib/apputils/udppktinfo.c
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2020-04-02 13:56:58 -0400
committerGreg Hudson <ghudson@mit.edu>2020-04-08 15:10:30 -0400
commitdb245c0d98c8e38a78a2e0b4af40ee23a18aaa96 (patch)
tree8453c1707733d0cdc3d9c2c6b0e3c0c9a825490d /src/lib/apputils/udppktinfo.c
parent022f2cbc7f5abc9fbefa0d68b6025216c1b59353 (diff)
downloadkrb5-db245c0d98c8e38a78a2e0b4af40ee23a18aaa96.zip
krb5-db245c0d98c8e38a78a2e0b4af40ee23a18aaa96.tar.gz
krb5-db245c0d98c8e38a78a2e0b4af40ee23a18aaa96.tar.bz2
Fix typos in comments
Correct comment spelling errors detected using codespell. Reported by Jens Schleusener.
Diffstat (limited to 'src/lib/apputils/udppktinfo.c')
-rw-r--r--src/lib/apputils/udppktinfo.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/apputils/udppktinfo.c b/src/lib/apputils/udppktinfo.c
index 9a06ae8..c6e86f6 100644
--- a/src/lib/apputils/udppktinfo.c
+++ b/src/lib/apputils/udppktinfo.c
@@ -298,8 +298,8 @@ recv_from_to(int sock, void *buf, size_t len, int flags,
if (!to || !tolen || !r)
return recvfrom(sock, buf, len, flags, from, fromlen);
- /* Clobber with something recognizeable in case we can't extract the
- * address but try to use it anyways. */
+ /* Clobber with something recognizable in case we can't extract the address
+ * but try to use it anyways. */
memset(to, 0x40, *tolen);
iov.iov_base = buf;
@@ -505,7 +505,7 @@ recv_from_to(int sock, void *buf, size_t len, int flags,
aux_addressing_info *auxaddr)
{
if (to && tolen) {
- /* Clobber with something recognizeable in case we try to use the
+ /* Clobber with something recognizable in case we try to use the
* address. */
memset(to, 0x40, *tolen);
*tolen = 0;