diff options
author | Gordon Bergling <gbe@FreeBSD.org> | 2022-07-03 13:13:32 +0000 |
---|---|---|
committer | Gordon Bergling <gbe@FreeBSD.org> | 2022-07-03 13:13:32 +0000 |
commit | e8b7972cfe3ce645636e9939ec447ea7bc5bca50 (patch) | |
tree | 16e0027362e5b676eb4623a465f01dbbd303a8dd | |
parent | 015d570cc929b7cdc45756aaeb6c870ac5f8ab22 (diff) |
if_clone: Fix a typo in a source code comment
- s/fucntions/functions/
MFC ater: 3 days
-rw-r--r-- | sys/net/if_clone.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/net/if_clone.h b/sys/net/if_clone.h index e454e5d57845..8f1c97705943 100644 --- a/sys/net/if_clone.h +++ b/sys/net/if_clone.h @@ -59,7 +59,7 @@ struct if_clone * if_clone_simple(const char *, ifcs_create_t, ifcs_destroy_t, u_int); void if_clone_detach(struct if_clone *); -/* Unit (de)allocating fucntions. */ +/* Unit (de)allocating functions. */ int ifc_name2unit(const char *name, int *unit); int ifc_alloc_unit(struct if_clone *, int *); void ifc_free_unit(struct if_clone *, int); |