Skip to Content.
Sympa Menu

freetds - RE: tdsdump file always getting created.

freetds AT lists.ibiblio.org

Subject: FreeTDS Development Group

List archive

Chronological Thread  
  • From: "Wilson, John" <John.Wilson AT savvis.net>
  • To: "'TDS Development Group'" <freetds AT franklin.metalab.unc.edu>
  • Subject: RE: tdsdump file always getting created.
  • Date: Wed, 13 Nov 2002 11:41:09 -0600


hello,
I'm curious if the fix below for turning off tdsdump will be implemented in
the source code. I took a look at the CVS source login.c and this fix below
does not appear to be implemented yet. Are there plans to do so... or is
there a better way to turn off tdsdump? I was under the impression from the
thread that even unsetting TDSDUMP did not work.
thanks
jd


-----Original Message-----
From: Bill Thompson [mailto:thompbil AT exchange.uk.ml.com]
Sent: Friday, November 08, 2002 5:19 AM
To: TDS Development Group
Subject: [freetds] tdsdump file always getting created.


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

---
You are currently subscribed to freetds as: [john.wilson AT savvis.net]
To unsubscribe, forward this message to
$subst('Email.Unsub')




Archive powered by MHonArc 2.6.24.

Top of Page