aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-20 05:13:03 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-20 05:13:03 +0000
commit43fa791e381914e670f439723d1c9acfb2093d9f (patch)
treed5e15d8658ff9d340d52d03094023692e7c4e107 /channels
parent46ecfc0bea90202a795e3777fc5324b5d19edffd (diff)
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 ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@43315 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_misdn.c4
-rw-r--r--channels/chan_zap.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/channels/chan_misdn.c b/channels/chan_misdn.c
index e5d63f391..4ae62e321 100644
--- a/channels/chan_misdn.c
+++ b/channels/chan_misdn.c
@@ -223,7 +223,7 @@ static struct robin_list *robin = NULL;
-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 @@ static int misdn_hangup(struct ast_channel *ast)
}
-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;
diff --git a/channels/chan_zap.c b/channels/chan_zap.c
index 303b52015..b2b43c583 100644
--- a/channels/chan_zap.c
+++ b/channels/chan_zap.c
@@ -701,9 +701,9 @@ static int zt_sendtext(struct ast_channel *c, const char *text);
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 @@ static struct ast_frame *__zt_exception(struct ast_channel *ast)
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 @@ struct ast_frame *zt_exception(struct ast_channel *ast)
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;