summaryrefslogtreecommitdiff
path: root/src/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/init.c')
-rw-r--r--src/init.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/init.c b/src/init.c
index 6f78e018c..f188505b6 100644
--- a/src/init.c
+++ b/src/init.c
@@ -457,6 +457,10 @@ int init_primary(int ac, char **av)
return -1;
}
+ /* Add Encryption Module; exit if there are errors */
+ if (encryption_module_init()) {
+ return -1;
+ }
return 0;
}