]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Bug 7779 - Using initstate(3) means that we cannot unload this module once loaded.
authorTilghman Lesher <tilghman@meg.abyt.es>
Tue, 22 Aug 2006 02:59:37 +0000 (02:59 +0000)
committerTilghman Lesher <tilghman@meg.abyt.es>
Tue, 22 Aug 2006 02:59:37 +0000 (02:59 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@40821 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_random.c

index cab34f31e7e263a24041ba23822ec25c38dd653e..789e04beb4d9c9f1937980db7ba3d498944d6069 100644 (file)
@@ -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()