Skip to Content.
Sympa Menu

freetds - tdsdump file always getting created.

freetds AT lists.ibiblio.org

Subject: FreeTDS Development Group

List archive

Chronological Thread  
  • From: "Bill Thompson" <thompbil AT exchange.uk.ml.com>
  • To: freetds AT franklin.oit.unc.edu
  • Subject: tdsdump file always getting created.
  • Date: Fri, 8 Nov 2002 06:18:32 -0500


Hi,

I know theer was a thread on this a few days ago.

I hit the same problem, and solved it with the following alteration in
tds_connect().

Before:
/*
** If a dump file has been specified, start logging
*/
if (connect_info->dump_file) {
tdsdump_open(connect_info->dump_file);
}
After:
/*
** If a dump file has been specified, start logging
*/
if (*(connect_info->dump_file)) {
tdsdump_open(connect_info->dump_file);
}

Did someone get round this another way ?

Bill




Archive powered by MHonArc 2.6.24.

Top of Page