a few cleanups from the last commit

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18572 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2006-04-08 22:16:34 +00:00
parent f10f427d49
commit 699f55071b
9 changed files with 18 additions and 18 deletions

View File

@@ -1125,7 +1125,7 @@ int unload_module(void)
return -1;
}
const const char *description(void)
const char *description(void)
{
return "ADSI Resource";
}
@@ -1136,7 +1136,7 @@ int usecount(void)
return 1;
}
const const char *key()
const char *key()
{
return ASTERISK_GPL_KEY;
}

View File

@@ -2051,7 +2051,7 @@ int load_module(void)
return ast_register_application(app, agi_exec, synopsis, descrip);
}
const const char *description(void)
const char *description(void)
{
return tdesc;
}
@@ -2063,7 +2063,7 @@ int usecount(void)
return res;
}
const const char *key()
const char *key()
{
return ASTERISK_GPL_KEY;
}

View File

@@ -175,7 +175,7 @@ int load_module(void)
return ast_cli_register(&cli_orig);
}
const const char *description(void)
const char *description(void)
{
return tdesc;
}
@@ -185,7 +185,7 @@ int usecount(void)
return 0;
}
const const char *key()
const char *key()
{
return ASTERISK_GPL_KEY;
}

View File

@@ -525,7 +525,7 @@ int load_module (void)
return 0;
}
char *description (void)
const char *description(void)
{
return tdesc;
}
@@ -536,7 +536,7 @@ int usecount (void)
return 1;
}
char *key ()
const char *key()
{
return ASTERISK_GPL_KEY;
}

View File

@@ -673,7 +673,7 @@ int parse_config (void)
return 1;
}
char *description (void)
const char *description(void)
{
return res_config_pgsql_desc;
}
@@ -689,7 +689,7 @@ int usecount (void)
return 0;
}
char *key ()
const char *key()
{
return ASTERISK_GPL_KEY;
}

View File

@@ -144,7 +144,7 @@ int load_module(void)
return ast_cli_register(&audio_convert_cli);
}
const const char *description(void)
const char *description(void)
{
return desc;
}
@@ -158,7 +158,7 @@ int usecount(void)
return res;
}
const const char *key()
const char *key()
{
return ASTERISK_GPL_KEY;
}

View File

@@ -603,7 +603,7 @@ int unload_module(void)
return -1;
}
const const char *description(void)
const char *description(void)
{
return "Cryptographic Digital Signatures";
}
@@ -614,7 +614,7 @@ int usecount(void)
return 1;
}
const const char *key()
const char *key()
{
return ASTERISK_GPL_KEY;
}

View File

@@ -2242,7 +2242,7 @@ int unload_module(void)
return ast_unregister_application(parkedcall);
}
const const char *description(void)
const char *description(void)
{
return "Call Features Resource";
}
@@ -2260,7 +2260,7 @@ int usecount(void)
#endif
}
const const char *key()
const char *key()
{
return ASTERISK_GPL_KEY;
}

View File

@@ -400,7 +400,7 @@ int reload(void)
return ind_load_module();
}
const const char *description(void)
const char *description(void)
{
/* that the following cast is needed, is yuk! */
return (char*)dtext;
@@ -411,7 +411,7 @@ int usecount(void)
return 0;
}
const const char *key()
const char *key()
{
return ASTERISK_GPL_KEY;
}