aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-07 00:21:01 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-06-07 00:21:01 +0000
commitfd6049e0c6eea80fad29f87f16e5257d6eff602e (patch)
tree01d3567adc1c6c225ecdb28d634df5f0b37553ac /utils
parentc8c2a68e9eb32fe45fc3b96a312877b30c9110d8 (diff)
fix astman build
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5870 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils')
-rwxr-xr-xutils/astman.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/utils/astman.c b/utils/astman.c
index 2a19304ad..e6af191e1 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;