]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
fix another symbol namespace issue (reported by Andrew on asterisk-dev)
authorKevin P. Fleming <kpfleming@digium.com>
Wed, 18 Mar 2009 11:31:41 +0000 (11:31 +0000)
committerKevin P. Fleming <kpfleming@digium.com>
Wed, 18 Mar 2009 11:31:41 +0000 (11:31 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@182882 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_dahdi.c
include/asterisk/callerid.h
main/callerid.c

index a8d2bd0567f9efbf482eacdf96ec173c3b36c012..1ad8d1035dedc31b48408320b7e0d7f13f6a7b7c 100644 (file)
@@ -7341,7 +7341,7 @@ static void *do_monitor(void *data)
                                                                        /* Turn on on hook transfer for 4 seconds */
                                                                        x = 4000;
                                                                        ioctl(last->subs[SUB_REAL].dfd, DAHDI_ONHOOKTRANSFER, &x);
-                                                                       last->cidlen = vmwi_generate(last->cidspill, res, 1, AST_LAW(last));
+                                                                       last->cidlen = ast_callerid_vmwi_generate(last->cidspill, res, 1, AST_LAW(last));
                                                                        last->cidpos = 0;
                                                                        last->msgstate = res;
                                                                        last->onhooktime = thispass;
index 7347dd9d03767403be97151e76bf5cd459bf3429..f9a8687eb2a23be4cb7ecc3057247228aecb9a03 100644 (file)
@@ -158,7 +158,7 @@ void callerid_free(struct callerid_state *cid);
 int ast_callerid_generate(unsigned char *buf, const char *name, const char *number, int codec);
 
 /*! \brief Generate message waiting indicator  (stutter tone) */
-int vmwi_generate(unsigned char *buf, int active, int mdmf, int codec);
+int ast_callerid_vmwi_generate(unsigned char *buf, int active, int mdmf, int codec);
 
 /*! \brief Generate Caller-ID spill but in a format suitable for Call Waiting(tm)'s Caller*ID(tm)
  * See ast_callerid_generate() for other details
index bf4bca4299bf0f253d7e1c165740127e4f869b78..cd6cde116c80509528dadaf060f3c89e9fea7076 100644 (file)
@@ -781,7 +781,7 @@ static int callerid_genmsg(char *msg, int size, const char *number, const char *
        
 }
 
-int vmwi_generate(unsigned char *buf, int active, int mdmf, int codec)
+int ast_callerid_vmwi_generate(unsigned char *buf, int active, int mdmf, int codec)
 {
        unsigned char msg[256];
        int len=0;