]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
a few cleanups from the last commit
authorKevin P. Fleming <kpfleming@digium.com>
Sat, 8 Apr 2006 22:16:34 +0000 (22:16 +0000)
committerKevin P. Fleming <kpfleming@digium.com>
Sat, 8 Apr 2006 22:16:34 +0000 (22:16 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@18572 65c4cc65-6c06-0410-ace0-fbb531ad65f3

res/res_adsi.c
res/res_agi.c
res/res_clioriginate.c
res/res_config_odbc.c
res/res_config_pgsql.c
res/res_convert.c
res/res_crypto.c
res/res_features.c
res/res_indications.c

index 258ac3dfb2361d7334fa92bb6873015bf2133508..ca0da1f363d3ced154d3689e37c509c5c8f54038 100644 (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;
 }
index 5c9e0572e3bd3b5bd1bdce5f005303dd3d37798e..8ff47e2616f9bbeca5348a91b7ddf334c9bf1a55 100644 (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;
 }
index aff7ed0b137cccb4845e78c4de923b6d4a6cac98..3b189cf8ac3fb12790a3f54e72807f0094de131e 100644 (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;
 }
index 933cba28a129fc1760298f6e7ce592276c818dec..febf839c5f64ecf8b7d3b18abdcc0f7b690e853b 100644 (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;
 }
index 654777949bfde57b48b8d82cf6173f24855a0b36..6dbf8ab0fa7e15970c301a7f3124bfa8a7d2abbc 100644 (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;
 }
index 9a1fac676bdfd24b5c0338af03181360483eee82..eea93f838076030abd15f1a9d91476e8032f6b5d 100644 (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;
 }
index 5c5d5c7c49be74419dedfd34075aa6a61c6c462c..accabd16b5fa636c1d72d07c4bf51e3faf706375 100644 (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;
 }
index b3013d563c4755ecf15a948cfe9ff5bd13db4b60..ee3da34c10f2297664aea44efab9822fbf04d4d7 100644 (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;
 }
index 38657535b7c2c611ccaa1ee1e5b8f6a785512db2..8e468c38a8b626cfa08bb4daf120c7e55d44b491 100644 (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;
 }