staticize a function, and normalize code in preparation to module changes.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19188 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Luigi Rizzo 2006-04-11 10:00:24 +00:00
parent baab6e1c27
commit 6b2d947b62
1 changed files with 4 additions and 5 deletions

View File

@ -73,7 +73,6 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
/*************************************
* Skinny/Asterisk Protocol Settings *
*************************************/
static const char desc[] = "Skinny Client Control Protocol (Skinny)";
static const char tdesc[] = "Skinny Client Control Protocol (Skinny)";
static const char config[] = "skinny.conf";
@ -3228,7 +3227,7 @@ static int reload_config(void)
return 0;
}
void delete_devices(void)
static void delete_devices(void)
{
struct skinny_device *d, *dlast;
struct skinny_line *l, *llast;
@ -3366,12 +3365,12 @@ int usecount()
return usecnt;
}
const char *key()
const char *key(void)
{
return ASTERISK_GPL_KEY;
}
const char *description()
const char *description(void)
{
return (char *) desc;
return "Skinny Client Control Protocol (Skinny)";
}