[Asterisk-cvs] asterisk/res res_odbc.c,1.19,1.20

russell russell
Thu Oct 13 14:06:54 CDT 2005


Update of /usr/cvsroot/asterisk/res
In directory mongoose.digium.com:/tmp/cvs-serv20713/res

Modified Files:
	res_odbc.c 
Log Message:
fix typo in function name (issue #5437)


Index: res_odbc.c
===================================================================
RCS file: /usr/cvsroot/asterisk/res/res_odbc.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- res_odbc.c	14 Sep 2005 20:46:50 -0000	1.19
+++ res_odbc.c	13 Oct 2005 18:01:31 -0000	1.20
@@ -62,7 +62,7 @@
 
 	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 @@
 	return new;
 }
 
-void destroy_obdc_obj(odbc_obj **obj)
+void destroy_odbc_obj(odbc_obj **obj)
 {
 	odbc_obj_disconnect(*obj);
 




More information about the svn-commits mailing list