[Asterisk-cvs] asterisk/utils astman.c,1.16,1.17

kpfleming at lists.digium.com kpfleming at lists.digium.com
Mon Jun 6 20:18:36 CDT 2005


Update of /usr/cvsroot/asterisk/utils
In directory mongoose.digium.com:/tmp/cvs-serv12037/utils

Modified Files:
	astman.c 
Log Message:
fix astman build


Index: astman.c
===================================================================
RCS file: /usr/cvsroot/asterisk/utils/astman.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- astman.c	28 May 2005 01:37:47 -0000	1.16
+++ astman.c	7 Jun 2005 00:21:01 -0000	1.17
@@ -53,6 +53,17 @@
 	struct ast_chan *next;
 } *chans;
 
+/* dummy functions to be compatible with the Asterisk core for md5.c */
+void ast_register_file_version(const char *file, const char *version);
+void ast_register_file_version(const char *file, const char *version)
+{
+}
+
+void ast_unregister_file_version(const char *file);
+void ast_unregister_file_version(const char *file)
+{
+}
+
 static struct ast_chan *find_chan(char *name)
 {
 	struct ast_chan *prev = NULL, *chan = chans;




More information about the svn-commits mailing list