From 8ee004b728732b782dbca2bdb5d8fd1c753e1bd9 Mon Sep 17 00:00:00 2001 From: tilghman Date: Tue, 22 Aug 2006 02:59:37 +0000 Subject: Bug 7779 - Using initstate(3) means that we cannot unload this module once loaded. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@40821 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_random.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'apps/app_random.c') diff --git a/apps/app_random.c b/apps/app_random.c index cab34f31e..789e04beb 100644 --- a/apps/app_random.c +++ b/apps/app_random.c @@ -116,9 +116,8 @@ char *description(void) int usecount(void) { - int res; - STANDARD_USECOUNT(res); - return res; + /* Don't allow unload, since rand(3) depends upon this module being here. */ + return 1; } char *key() -- cgit v1.2.3