aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-13 18:01:31 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-13 18:01:31 +0000
commit5a5fc722ebbfa54d4fc8f8bdb61efb29d0f1f0f6 (patch)
treedec9bad16a13ba51392e8ac404d414244dbfe925 /res
parent46795cc9866686d5c12cc3e1ea89f233f0b7384e (diff)
fix typo in function name (issue #5437)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6758 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rwxr-xr-xres/res_odbc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_odbc.c b/res/res_odbc.c
index 5438ef40c..2c58ce72e 100755
--- a/res/res_odbc.c
+++ b/res/res_odbc.c
@@ -62,7 +62,7 @@ static void odbc_destroy(void)
for (x = 0; x < MAX_ODBC_HANDLES; x++) {
if (ODBC_REGISTRY[x].obj) {
- destroy_obdc_obj(&ODBC_REGISTRY[x].obj);
+ destroy_odbc_obj(&ODBC_REGISTRY[x].obj);
ODBC_REGISTRY[x].obj = NULL;
}
}
@@ -401,7 +401,7 @@ odbc_obj *new_odbc_obj(char *name, char *dsn, char *username, char *password)
return new;
}
-void destroy_obdc_obj(odbc_obj **obj)
+void destroy_odbc_obj(odbc_obj **obj)
{
odbc_obj_disconnect(*obj);