Module Name: src
Committed By: pgoyette
Date: Wed Dec 7 10:03:29 UTC 2016
Modified Files:
src/lib/libc/net: linkaddr.c
Log Message:
Fix comment: s/ACCD/ADDC/
To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/lib/libc/net/linkaddr.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/lib/libc/net/linkaddr.c
diff -u src/lib/libc/net/linkaddr.c:1.21 src/lib/libc/net/linkaddr.c:1.22
--- src/lib/libc/net/linkaddr.c:1.21 Wed Dec 7 09:52:34 2016
+++ src/lib/libc/net/linkaddr.c Wed Dec 7 10:03:29 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: linkaddr.c,v 1.21 2016/12/07 09:52:34 kre Exp $ */
+/* $NetBSD: linkaddr.c,v 1.22 2016/12/07 10:03:29 pgoyette Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)linkaddr.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: linkaddr.c,v 1.21 2016/12/07 09:52:34 kre Exp $");
+__RCSID("$NetBSD: linkaddr.c,v 1.22 2016/12/07 10:03:29 pgoyette Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -163,7 +163,7 @@ link_ntoa(const struct sockaddr_dl *sdl)
* complex:
* if (out < obuf + sizeof(obuf) - ((ch) != '\0'))
* *out++ = (ch);
- * so it never returns, and the final ACCD(0) always works
+ * so it never returns, and the final ADDC(0) always works
* but that evaluates 'ch' twice, and is slower, so ...)
*/
obuf[sizeof(obuf) - 1] = '\0';