[asterisk-commits] kpfleming: trunk r43315 - in /trunk: ./ channels/

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Tue Sep 19 22:13:03 MST 2006


Author: kpfleming
Date: Wed Sep 20 00:13:03 2006
New Revision: 43315

URL: http://svn.digium.com/view/asterisk?rev=43315&view=rev
Log:
Merged revisions 43314 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.2

........
r43314 | kpfleming | 2006-09-20 00:08:05 -0500 (Wed, 20 Sep 2006) | 2 lines

make some more functions static

........

Modified:
    trunk/   (props changed)
    trunk/channels/chan_misdn.c
    trunk/channels/chan_zap.c

Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.2-merged' - no diff available.

Modified: trunk/channels/chan_misdn.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_misdn.c?rev=43315&r1=43314&r2=43315&view=diff
==============================================================================
--- trunk/channels/chan_misdn.c (original)
+++ trunk/channels/chan_misdn.c Wed Sep 20 00:13:03 2006
@@ -223,7 +223,7 @@
 
 
 
-struct ast_frame *process_ast_dsp(struct chan_list *tmp, struct ast_frame *frame);
+static struct ast_frame *process_ast_dsp(struct chan_list *tmp, struct ast_frame *frame);
 
 
 
@@ -2376,7 +2376,7 @@
 }
 
 
-struct ast_frame *process_ast_dsp(struct chan_list *tmp, struct ast_frame *frame)
+static struct ast_frame *process_ast_dsp(struct chan_list *tmp, struct ast_frame *frame)
 {
 	struct ast_frame *f,*f2;
  

Modified: trunk/channels/chan_zap.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_zap.c?rev=43315&r1=43314&r2=43315&view=diff
==============================================================================
--- trunk/channels/chan_zap.c (original)
+++ trunk/channels/chan_zap.c Wed Sep 20 00:13:03 2006
@@ -701,9 +701,9 @@
 static int zt_call(struct ast_channel *ast, char *rdest, int timeout);
 static int zt_hangup(struct ast_channel *ast);
 static int zt_answer(struct ast_channel *ast);
-struct ast_frame *zt_read(struct ast_channel *ast);
+static struct ast_frame *zt_read(struct ast_channel *ast);
 static int zt_write(struct ast_channel *ast, struct ast_frame *frame);
-struct ast_frame *zt_exception(struct ast_channel *ast);
+static struct ast_frame *zt_exception(struct ast_channel *ast);
 static int zt_indicate(struct ast_channel *chan, int condition, const void *data, size_t datalen);
 static int zt_fixup(struct ast_channel *oldchan, struct ast_channel *newchan);
 static int zt_setoption(struct ast_channel *chan, int option, void *data, int datalen);
@@ -4516,7 +4516,7 @@
 	return f;
 }
 
-struct ast_frame *zt_exception(struct ast_channel *ast)
+static struct ast_frame *zt_exception(struct ast_channel *ast)
 {
 	struct zt_pvt *p = ast->tech_pvt;
 	struct ast_frame *f;
@@ -4526,7 +4526,7 @@
 	return f;
 }
 
-struct ast_frame  *zt_read(struct ast_channel *ast)
+static struct ast_frame  *zt_read(struct ast_channel *ast)
 {
 	struct zt_pvt *p = ast->tech_pvt;
 	int res;



More information about the asterisk-commits mailing list