aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-11 15:05:19 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-08-11 15:05:19 +0000
commitc9d4b54d8f00072b097d223ed25b2f37d9c2ead4 (patch)
tree5d004b040b0488880928850978f7570ef4115c98 /res
parent315ab8399e19ee39a5d5f526edc4ac858d468b0d (diff)
Move STD_MOD declaration to end of file as per the norm of everything else (issue #7711 reported by Mithraen)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@39514 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_config_pgsql.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_config_pgsql.c b/res/res_config_pgsql.c
index ace243e12..02b067bc0 100644
--- a/res/res_config_pgsql.c
+++ b/res/res_config_pgsql.c
@@ -708,8 +708,6 @@ static const char *key(void)
return ASTERISK_GPL_KEY;
}
-STD_MOD(MOD_0, reload, NULL, NULL);
-
static int pgsql_reconnect(const char *database)
{
char my_database[50];
@@ -800,3 +798,5 @@ static int realtime_pgsql_status(int fd, int argc, char **argv)
return RESULT_FAILURE;
}
}
+
+STD_MOD(MOD_0, reload, NULL, NULL);