]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-11827: [Core] Fix regression in mod_managed due to the type name switch_core_db_ha...
authorAndrey Volk <andywolk@gmail.com>
Wed, 18 Sep 2019 22:01:11 +0000 (02:01 +0400)
committerAndrey Volk <andywolk@gmail.com>
Mon, 30 Dec 2019 22:28:34 +0000 (02:28 +0400)
src/include/switch_core.h
src/include/switch_core_db.h
src/include/switch_types.h

index dbff45d46b9d6fe7fe9c98a1ef22c087c9781f29..8255e13c858bc5715f1a419b8c5244957ac587aa 100644 (file)
@@ -2503,7 +2503,7 @@ typedef enum {
 } switch_cache_db_handle_type_t;
 
 typedef union {
-       switch_core_db_handle_t *core_db_dbh;
+       switch_coredb_handle_t *core_db_dbh;
        switch_odbc_handle_t *odbc_dbh;
        switch_database_interface_handle_t *database_interface_dbh;
 } switch_cache_db_native_handle_t;
index ab8351b78248f85ab04f31ba30e944a5403a95dc..4fbdc5bc63a6dce80b407b4e428aa2dbc293f4e6 100644 (file)
@@ -52,7 +52,7 @@ SWITCH_BEGIN_EXTERN_C
 */
        typedef struct sqlite3 switch_core_db_t;
 
-struct switch_core_db_handle {
+struct switch_coredb_handle {
        switch_bool_t in_memory;
        switch_core_db_t *handle;
 };
index 456b3c4c6652b49e7279567c9268c13ff45be5e6..09fe09defc641774af6886bebf5323dfcee40b51 100644 (file)
@@ -2318,7 +2318,7 @@ typedef struct switch_codec_implementation switch_codec_implementation_t;
 typedef struct switch_buffer switch_buffer_t;
 typedef union  switch_codec_settings switch_codec_settings_t;
 typedef struct switch_codec_fmtp switch_codec_fmtp_t;
-typedef struct switch_core_db_handle switch_core_db_handle_t;
+typedef struct switch_coredb_handle switch_coredb_handle_t;
 typedef struct switch_odbc_handle switch_odbc_handle_t;
 typedef struct switch_database_interface_handle switch_database_interface_handle_t;