From 21d21f89c04ebaad6822311ceadd13275b357513 Mon Sep 17 00:00:00 2001 From: kpfleming Date: Wed, 1 Feb 2006 23:05:28 +0000 Subject: use string fields for some stuff in ast_channel const-ify some more APIs remove 'type' field from ast_channel, in favor of the one in the channel's tech structure allow string field module users to specify the 'chunk size' for pool allocations update chan_alsa to be compatible with recent const-ification patches git-svn-id: http://svn.digium.com/svn/asterisk/trunk@9060 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_zapbarge.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/app_zapbarge.c') diff --git a/apps/app_zapbarge.c b/apps/app_zapbarge.c index 3fb62f94f..7f28f0679 100644 --- a/apps/app_zapbarge.c +++ b/apps/app_zapbarge.c @@ -131,7 +131,7 @@ static int conf_run(struct ast_channel *chan, int confno, int confflags) goto outrun; } ast_indicate(chan, -1); - retryzap = strcasecmp(chan->type, "Zap"); + retryzap = strcasecmp(chan->tech->type, "Zap"); zapretry: origfd = chan->fds[0]; if (retryzap) { -- cgit v1.2.3