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

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)