From f6829a059fdadf9c9e2d138fa7472c9510c7d8dd Mon Sep 17 00:00:00 2001 From: Yaroslav Tykhiy Date: Thu, 27 Jul 2006 11:52:12 +0000 Subject: [PATCH] Fix what looks like a typo: MODULE_DEPEND() takes module names, not KLD file names; and GELI module's name is g_eli, not geom_eli. Approved by: pjd (silence) MFC after: 5 days --- sys/geom/eli/g_eli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/geom/eli/g_eli.c b/sys/geom/eli/g_eli.c index 47d6a0abf3f..453b7569fb0 100644 --- a/sys/geom/eli/g_eli.c +++ b/sys/geom/eli/g_eli.c @@ -1030,4 +1030,4 @@ g_eli_dumpconf(struct sbuf *sb, const char *indent, struct g_geom *gp, } DECLARE_GEOM_CLASS(g_eli_class, g_eli); -MODULE_DEPEND(geom_eli, crypto, 1, 1, 1); +MODULE_DEPEND(g_eli, crypto, 1, 1, 1);