aboutsummaryrefslogtreecommitdiffstats
path: root/cdr.c
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-11 16:03:16 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-11 16:03:16 +0000
commit53df4a7ba9cd7fd91ca42f02d90661ec5e5e0d29 (patch)
tree86eaed1c17025ee15417e823f60064ed6598506c /cdr.c
parent766b97bcb92ccda2e17996bcf544de68284e7111 (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@9547 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'cdr.c')
-rw-r--r--cdr.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cdr.c b/cdr.c
index 442de9c1f..edad68e48 100644
--- a/cdr.c
+++ b/cdr.c
@@ -1136,7 +1136,6 @@ static int do_reload(void)
int was_enabled;
int was_batchmode;
int res=0;
- pthread_attr_t attr;
ast_mutex_lock(&cdr_batch_lock);
@@ -1197,7 +1196,7 @@ static int do_reload(void)
if it does not exist */
if (enabled && batchmode && (!was_enabled || !was_batchmode) && (cdr_thread == AST_PTHREADT_NULL)) {
ast_cond_init(&cdr_pending_cond, NULL);
- if (ast_pthread_create(&cdr_thread, &attr, do_cdr, NULL) < 0) {
+ if (ast_pthread_create(&cdr_thread, NULL, do_cdr, NULL) < 0) {
ast_log(LOG_ERROR, "Unable to start CDR thread.\n");
ast_sched_del(sched, cdr_sched);
} else {