From e8b7972cfe3ce645636e9939ec447ea7bc5bca50 Mon Sep 17 00:00:00 2001 From: Gordon Bergling Date: Sun, 3 Jul 2022 15:13:32 +0200 Subject: [PATCH] if_clone: Fix a typo in a source code comment - s/fucntions/functions/ MFC ater: 3 days --- sys/net/if_clone.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/net/if_clone.h b/sys/net/if_clone.h index e454e5d5784..8f1c9770594 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);