@@ -79,7 +79,6 @@ int assign_dsn_attr(esodbc_dsn_attrs_st *attrs,
7979 {& MK_WSTR (ESODBC_DSN_VERSION_CHECKING ), & attrs -> version_checking },
8080 {& MK_WSTR (ESODBC_DSN_MFIELD_LENIENT ), & attrs -> mfield_lenient },
8181 {& MK_WSTR (ESODBC_DSN_ESC_PVA ), & attrs -> auto_esc_pva },
82- {& MK_WSTR (ESODBC_DSN_IDX_INC_FROZEN ), & attrs -> idx_inc_frozen },
8382 {& MK_WSTR (ESODBC_DSN_TRACE_ENABLED ), & attrs -> trace_enabled },
8483 {& MK_WSTR (ESODBC_DSN_TRACE_FILE ), & attrs -> trace_file },
8584 {& MK_WSTR (ESODBC_DSN_TRACE_LEVEL ), & attrs -> trace_level },
@@ -413,7 +412,6 @@ long TEST_API write_00_list(esodbc_dsn_attrs_st *attrs,
413412 {& MK_WSTR (ESODBC_DSN_VERSION_CHECKING ), & attrs -> version_checking },
414413 {& MK_WSTR (ESODBC_DSN_MFIELD_LENIENT ), & attrs -> mfield_lenient },
415414 {& MK_WSTR (ESODBC_DSN_ESC_PVA ), & attrs -> auto_esc_pva },
416- {& MK_WSTR (ESODBC_DSN_IDX_INC_FROZEN ), & attrs -> idx_inc_frozen },
417415 {& MK_WSTR (ESODBC_DSN_TRACE_ENABLED ), & attrs -> trace_enabled },
418416 {& MK_WSTR (ESODBC_DSN_TRACE_FILE ), & attrs -> trace_file },
419417 {& MK_WSTR (ESODBC_DSN_TRACE_LEVEL ), & attrs -> trace_level },
@@ -688,11 +686,6 @@ BOOL write_system_dsn(esodbc_dsn_attrs_st *new_attrs,
688686 & new_attrs -> auto_esc_pva ,
689687 old_attrs ? & old_attrs -> auto_esc_pva : NULL
690688 },
691- {
692- & MK_WSTR (ESODBC_DSN_IDX_INC_FROZEN ),
693- & new_attrs -> idx_inc_frozen ,
694- old_attrs ? & old_attrs -> idx_inc_frozen : NULL
695- },
696689 {
697690 & MK_WSTR (ESODBC_DSN_TRACE_ENABLED ), & new_attrs -> trace_enabled ,
698691 old_attrs ? & old_attrs -> trace_enabled : NULL
@@ -783,7 +776,6 @@ long TEST_API write_connection_string(esodbc_dsn_attrs_st *attrs,
783776 {& attrs -> version_checking , & MK_WSTR (ESODBC_DSN_VERSION_CHECKING )},
784777 {& attrs -> mfield_lenient , & MK_WSTR (ESODBC_DSN_MFIELD_LENIENT )},
785778 {& attrs -> auto_esc_pva , & MK_WSTR (ESODBC_DSN_ESC_PVA )},
786- {& attrs -> idx_inc_frozen , & MK_WSTR (ESODBC_DSN_IDX_INC_FROZEN )},
787779 {& attrs -> trace_enabled , & MK_WSTR (ESODBC_DSN_TRACE_ENABLED )},
788780 {& attrs -> trace_file , & MK_WSTR (ESODBC_DSN_TRACE_FILE )},
789781 {& attrs -> trace_level , & MK_WSTR (ESODBC_DSN_TRACE_LEVEL )},
@@ -880,9 +872,6 @@ void assign_dsn_defaults(esodbc_dsn_attrs_st *attrs)
880872 res |= assign_dsn_attr (attrs ,
881873 & MK_WSTR (ESODBC_DSN_ESC_PVA ),
882874 & MK_WSTR (ESODBC_DEF_ESC_PVA ), /*overwrite?*/ FALSE);
883- res |= assign_dsn_attr (attrs ,
884- & MK_WSTR (ESODBC_DSN_IDX_INC_FROZEN ),
885- & MK_WSTR (ESODBC_DEF_IDX_INC_FROZEN ), /*overwrite?*/ FALSE);
886875
887876 /* default: no trace file */
888877 res |= assign_dsn_attr (attrs ,
0 commit comments