[Date Prev][Date Next] [Chronological] [Thread] [Top]

RE: Logging: Segfault in saslauthz.c due to wrong type (ITS#1145 )



I've committed the fix.  Thanks.

-----Original Message-----
From: sxw@sxw.org.uk [mailto:sxw@sxw.org.uk]
Sent: Friday, May 11, 2001 10:53 AM
To: openldap-its@OpenLDAP.org
Subject: Logging: Segfault in saslauthz.c due to wrong type (ITS#1145)


Full_Name: Simon Wilkinson
Version: CVS HEAD
OS: Linux
URL: 
Submission from: (NULL) (213.122.45.4)


Trivial typo, but it causes things to crash if logging is enabled. I can't
upload a
diff right now, but here's the fix in a slightly more cumbersome form:
Line 341 currently reads:
"slap_sasl2dn: performing internal search (base=%s, scope=%s)\n",
But should read:
"slap_sasl2dn: performing internal search (base=%s, scope=%d)\n",

(Note the change from %s to %d for the scope type)