Displaying 1 result from an estimated 1 matches for "6_log".
Did you mean:
1_log
2001 Jul 05
1
OpenSSH Logging Madness
...printf, 1, 2)));
void verbose(const char *fmt,...) __attribute__((format(printf, 1, 2)));
void debug(const char *fmt,...) __attribute__((format(printf, 1, 2)));
Index: 2_9_p2_w_gss_krb5_named_keys.6/log.c
--- 2_9_p2_w_gss_krb5_named_keys.6/log.c Thu, 03 May 2001 16:12:13 -0400 jd (OpenSSH/j/6_log.c 1.1 644)
+++ 2_9_p2_w_gss_krb5_named_keys.6(w)/log.c Thu, 05 Jul 2001 18:44:07 -0400 willian (OpenSSH/j/6_log.c 1.1 644)
@@ -135,6 +135,17 @@
/* Log this message (information that usually should go to the log). */
void
+notice(const char *fmt,...)
+{
+ va_list args;
+ va_start(args, fmt);
+ d...