summaryrefslogtreecommitdiff
path: root/res/res_agi.c
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-04-11 10:01:00 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-04-11 10:01:00 +0000
commit75073097320886432f1722b8b5a50735ce54e4f6 (patch)
treec5b08094fbaac20fab7e0a33c5cd97ee4593107f /res/res_agi.c
parent6b2d947b6207b12c1f023e6ee5c46032040c36f0 (diff)
normalize code in preparation to module changes
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19189 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_agi.c')
-rw-r--r--res/res_agi.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/res/res_agi.c b/res/res_agi.c
index 8ff47e261..9f16c9faa 100644
--- a/res/res_agi.c
+++ b/res/res_agi.c
@@ -71,8 +71,6 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
/* Recycle some stuff from the CLI interface */
#define fdprintf agi_debug_cli
-static char *tdesc = "Asterisk Gateway Interface (AGI)";
-
static char *app = "AGI";
static char *eapp = "EAGI";
@@ -2053,7 +2051,8 @@ int load_module(void)
const char *description(void)
{
- return tdesc;
+ return "Asterisk Gateway Interface (AGI)";
+
}
int usecount(void)
@@ -2063,7 +2062,7 @@ int usecount(void)
return res;
}
-const char *key()
+const char *key(void)
{
return ASTERISK_GPL_KEY;
}