From 42fff743b6d823ca7818a12c6beb79cec1fb32e7 Mon Sep 17 00:00:00 2001 From: rizzo Date: Tue, 19 Dec 2006 21:03:02 +0000 Subject: fix a bogus datalen in the frames generated by app_sms (causing noisy output if you listen to the output!) This affects trunk as well, whereas 1.2 is ok. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@48583 f38db490-d61c-443f-a65b-d21fe96a405b --- apps/app_sms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/app_sms.c') diff --git a/apps/app_sms.c b/apps/app_sms.c index 5eb0f9f85..d56ada4fc 100644 --- a/apps/app_sms.c +++ b/apps/app_sms.c @@ -1198,7 +1198,7 @@ static int sms_generate (struct ast_channel *chan, void *data, int len, int samp #else f.subclass = AST_FORMAT_SLINEAR; #endif - f.datalen = len; + f.datalen = samples * SAMPLE2LEN; f.offset = AST_FRIENDLY_OFFSET; f.mallocd = 0; f.data = buf; -- cgit v1.2.3