summaryrefslogtreecommitdiff
path: root/res/res_musiconhold.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2006-04-05 17:44:44 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2006-04-05 17:44:44 +0000
commit756c7cbb120c73de72f8e8dedcba1facea5029bd (patch)
tree6334c0ffd529b865c510fbfb7a06b71e2c6d6ceb /res/res_musiconhold.c
parent701b49027ddc212cc34d5d0bafe537a294f482dc (diff)
Bug 6873 - Finish moving from the non-threadsafe (and poor randomness) rand() to threadsafe ast_random()
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@17627 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_musiconhold.c')
-rw-r--r--res/res_musiconhold.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/res_musiconhold.c b/res/res_musiconhold.c
index 4c0f93213..314c0762a 100644
--- a/res/res_musiconhold.c
+++ b/res/res_musiconhold.c
@@ -208,7 +208,7 @@ static int ast_moh_files_next(struct ast_channel *chan)
}
if (ast_test_flag(state->class, MOH_RANDOMIZE))
- state->pos = rand();
+ state->pos = ast_random();
/* check to see if this file's format can be opened */
if (ast_fileexists(state->class->filearray[state->pos], NULL, NULL) != -1)