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: "Castellano, Nicholas" <Nicholas_Castellano AT acml.com>
  • To: "'TDS Development Group'" <freetds AT franklin.metalab.unc.edu>
  • Subject: RE: tdsdump file always getting created.
  • Date: Wed, 13 Nov 2002 12:46:41 -0500


A different fix was already implemented when this patch was posted.

Cheers,
--nick

-----Original Message-----
From: bounce-freetds-145195 AT franklin.oit.unc.edu
[mailto:bounce-freetds-145195 AT franklin.oit.unc.edu]
Sent: Wednesday, November 13, 2002 12:41 PM
To: TDS Development Group
Subject: [freetds] RE: tdsdump file always getting created.


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')

---
You are currently subscribed to freetds as: [Nicholas_Castellano AT acml.com]
To unsubscribe, forward this message to
$subst('Email.Unsub')


The information contained in this transmission may contain privileged and
confidential information and is intended only for the use of the person(s)
named above. If you are not the intended recipient, or an employee or agent
responsible for delivering this message to the intended recipient, any
review, dissemination, distribution or duplication of this communication is
strictly prohibited. If you are not the intended recipient, please contact
the sender immediately by reply e-mail and destroy all copies of the
original message. Please note that we do not accept account orders and/or
instructions by e-mail, and therefore will not be responsible for carrying
out such orders and/or instructions.






Archive powered by MHonArc 2.6.24.

Top of Page