From: Kevin P. Fleming Date: Tue, 7 Jun 2005 00:21:01 +0000 (+0000) Subject: fix astman build X-Git-Tag: 1.2.0-beta1~494 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=59a0f860bd751be34bcd4fb954c592857782e1d3;p=thirdparty%2Fasterisk.git fix astman build git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5870 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/utils/astman.c b/utils/astman.c index 2a19304adc..e6af191e17 100755 --- a/utils/astman.c +++ b/utils/astman.c @@ -53,6 +53,17 @@ static struct ast_chan { 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;