Module Name: src Committed By: pgoyette Date: Sat Apr 20 22:16:47 UTC 2019
Modified Files: src/sys/net: if.c Log Message: Typos in comments. NFCI. To generate a diff of this commit: cvs rdiff -u -r1.450 -r1.451 src/sys/net/if.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/net/if.c diff -u src/sys/net/if.c:1.450 src/sys/net/if.c:1.451 --- src/sys/net/if.c:1.450 Tue Apr 16 04:31:43 2019 +++ src/sys/net/if.c Sat Apr 20 22:16:47 2019 @@ -1,4 +1,4 @@ -/* $NetBSD: if.c,v 1.450 2019/04/16 04:31:43 msaitoh Exp $ */ +/* $NetBSD: if.c,v 1.451 2019/04/20 22:16:47 pgoyette Exp $ */ /*- * Copyright (c) 1999, 2000, 2001, 2008 The NetBSD Foundation, Inc. @@ -90,7 +90,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: if.c,v 1.450 2019/04/16 04:31:43 msaitoh Exp $"); +__KERNEL_RCSID(0, "$NetBSD: if.c,v 1.451 2019/04/20 22:16:47 pgoyette Exp $"); #if defined(_KERNEL_OPT) #include "opt_inet.h" @@ -3158,7 +3158,7 @@ doifioctl(struct socket *so, u_long cmd, } ifr = data; - /* Pre-convesion */ + /* Pre-conversion */ MODULE_HOOK_CALL(if_cvtcmd_43_hook, (&cmd, ocmd), enosys(), hook); if (hook != ENOSYS) { if (cmd != ocmd) { @@ -3276,7 +3276,7 @@ doifioctl(struct socket *so, u_long cmd, } } - /* Post-convesion */ + /* Post-conversion */ if (cmd != ocmd) IFREQN2O_43(oifr, ifr);