summaryrefslogtreecommitdiff
path: root/log-client.c
diff options
context:
space:
mode:
Diffstat (limited to 'log-client.c')
-rw-r--r--log-client.c43
1 files changed, 33 insertions, 10 deletions
diff --git a/log-client.c b/log-client.c
index 7615a94f0..505c8c337 100644
--- a/log-client.c
+++ b/log-client.c
@@ -1,21 +1,42 @@
1/* 1/*
2 *
3 * log-client.c
4 *
5 * Author: Tatu Ylonen <ylo@cs.hut.fi> 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
6 *
7 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
8 * All rights reserved 4 * All rights reserved
9 *
10 * Created: Mon Mar 20 21:13:40 1995 ylo
11 *
12 * Client-side versions of debug(), log(), etc. These print to stderr. 5 * Client-side versions of debug(), log(), etc. These print to stderr.
13 * This is a stripped down version of log-server.c. 6 * This is a stripped down version of log-server.c.
14 * 7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 *
14 *
15 * Copyright (c) 2000 Markus Friedl. All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
27 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
28 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
29 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
30 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
31 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
35 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
15 */ 36 */
16 37
17#include "includes.h" 38#include "includes.h"
18RCSID("$OpenBSD: log-client.c,v 1.10 2000/08/19 02:57:33 deraadt Exp $"); 39RCSID("$OpenBSD: log-client.c,v 1.12 2000/09/12 20:53:10 markus Exp $");
19 40
20#include "xmalloc.h" 41#include "xmalloc.h"
21#include "ssh.h" 42#include "ssh.h"
@@ -36,7 +57,9 @@ log_init(char *av0, LogLevel level, SyslogFacility ignored1, int ignored2)
36 case SYSLOG_LEVEL_FATAL: 57 case SYSLOG_LEVEL_FATAL:
37 case SYSLOG_LEVEL_INFO: 58 case SYSLOG_LEVEL_INFO:
38 case SYSLOG_LEVEL_VERBOSE: 59 case SYSLOG_LEVEL_VERBOSE:
39 case SYSLOG_LEVEL_DEBUG: 60 case SYSLOG_LEVEL_DEBUG1:
61 case SYSLOG_LEVEL_DEBUG2:
62 case SYSLOG_LEVEL_DEBUG3:
40 log_level = level; 63 log_level = level;
41 break; 64 break;
42 default: 65 default:
@@ -54,7 +77,7 @@ do_log(LogLevel level, const char *fmt, va_list args)
54 77
55 if (level > log_level) 78 if (level > log_level)
56 return; 79 return;
57 if (level == SYSLOG_LEVEL_DEBUG) 80 if (level >= SYSLOG_LEVEL_DEBUG1)
58 fprintf(stderr, "debug: "); 81 fprintf(stderr, "debug: ");
59 vsnprintf(msgbuf, sizeof(msgbuf), fmt, args); 82 vsnprintf(msgbuf, sizeof(msgbuf), fmt, args);
60 fprintf(stderr, "%s\r\n", msgbuf); 83 fprintf(stderr, "%s\r\n", msgbuf);