--------------------- PatchSet 523 Date: 2000/08/10 15:08:28 Author: kinkie Branch: ntlm Tag: (none) Log: Included PID in debugging output. Members: ntlm_auth_modules/NTLMSSP/ntlm.h:1.1.2.5->1.1.2.6 Index: squid/ntlm_auth_modules/NTLMSSP/ntlm.h =================================================================== RCS file: /cvsroot/squid-sf//squid/ntlm_auth_modules/NTLMSSP/Attic/ntlm.h,v retrieving revision 1.1.2.5 retrieving revision 1.1.2.6 diff -u -r1.1.2.5 -r1.1.2.6 --- squid/ntlm_auth_modules/NTLMSSP/ntlm.h 10 Aug 2000 11:51:38 -0000 1.1.2.5 +++ squid/ntlm_auth_modules/NTLMSSP/ntlm.h 10 Aug 2000 15:08:28 -0000 1.1.2.6 @@ -35,8 +35,9 @@ #ifdef __GNUC__ /* this is really a gcc-ism */ #ifdef DEBUG #include +#include static char* __foo; -#define debug(X...) fprintf(stderr,"ntlm-auth(%s:%d): ",\ +#define debug(X...) fprintf(stderr,"ntlm-auth[%d](%s:%d): ", getpid(), \ ((__foo=strrchr(__FILE__,'/'))==NULL?__FILE__:__foo+1),\ __LINE__);\ fprintf(stderr,X)