]> andersk Git - openssh.git/blobdiff - log-client.c
- Applied Tom Bertelson's <tbert@abac.com> AIX authentication fix
[openssh.git] / log-client.c
index 09d96202f3909588fa4397a99c73f589c016f105..04eb6433daf82428fd5aecbfd414840e58b8e29c 100644 (file)
@@ -1,17 +1,17 @@
 /*
- * 
+ *
  * log-client.c
- * 
+ *
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
- * 
+ *
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
  *                    All rights reserved
- * 
+ *
  * Created: Mon Mar 20 21:13:40 1995 ylo
- * 
+ *
  * Client-side versions of debug(), log(), etc.  These print to stderr.
  * This is a stripped down version of log-server.c.
- * 
+ *
  */
 
 #include "includes.h"
@@ -45,12 +45,12 @@ log_init(char *av0, LogLevel level, SyslogFacility ignored1, int ignored2)
        }
 }
 
-#define MSGBUFSIZE 1024
+#define MSGBUFSIZ 1024
 
 void
 do_log(LogLevel level, const char *fmt, va_list args)
 {
-       char msgbuf[MSGBUFSIZE];
+       char msgbuf[MSGBUFSIZ];
 
        if (level > log_level)
                return;
This page took 0.087255 seconds and 4 git commands to generate.