View | Details | Raw Unified | Return to bug 58991
Collapse All | Expand All

(-)courier-imap-2.1.1/authlib/debug.c.xx (-1 / +1 lines)
Lines 80-85 Link Here
80
			buf[i] = '.';
80
			buf[i] = '.';
81
81
82
	// emit it
82
	// emit it
83
	fprintf( stderr, buf );
83
	fputs( buf, stderr );
84
	fprintf( stderr, "\n" );
84
	fprintf( stderr, "\n" );
85
}
85
}
(-)courier-imap-2.1.1/authlib/debug.h.xx (-1 / +1 lines)
Lines 19-25 Link Here
19
#define DEBUG_MESSAGE_SIZE (1<<10)
19
#define DEBUG_MESSAGE_SIZE (1<<10)
20
20
21
void auth_debug_login_init( void );
21
void auth_debug_login_init( void );
22
void auth_debug_login( int level, const char *fmt, ... );
22
void auth_debug_login( int level, const char *fmt, ... ) __attribute__((format(printf,2,3)));
23
23
24
extern int auth_debug_login_level;
24
extern int auth_debug_login_level;
25
25

Return to bug 58991