Displaying 8 results from an estimated 8 matches for "log_level_numb".
Did you mean:
log_level_number
2007 Apr 10
6
[PATCH 0/6] openssh V_4_6: minor fixes/cleanups
This patch series consists of minor fixes and cleanups I made during
update to openssh V_4_6 branch.
openssh/auth-pam.c | 9 ++++-----
openssh/auth2.c | 2 --
openssh/readconf.c | 7 ++++---
openssh/servconf.c | 14 ++++++++------
openssh/sftp-server.c | 9 ++++++---
openssh/sshd.c | 2 +-
6 files changed, 23 insertions(+), 20 deletions(-)
--
ldv
2000 Feb 04
0
Patch that allows equal sign in options
...WHITESPACE_EQ);
value = cipher_number(cp);
if (value == -1)
fatal("%.200s line %d: Bad cipher '%s'.",
@@ -445,7 +446,7 @@
case oLogLevel:
intptr = (int *) &options->log_level;
- cp = strtok(NULL, WHITESPACE);
+ cp = strtok(NULL, WHITESPACE_EQ);
value = log_level_number(cp);
if (value == (LogLevel) - 1)
fatal("%.200s line %d: unsupported log level '%s'\n",
@@ -455,14 +456,14 @@
break;
case oRemoteForward:
- cp = strtok(NULL, WHITESPACE);
+ cp = strtok(NULL, WHITESPACE_EQ);
if (!cp)
fatal("%.200s line %d: Missing argu...
2007 Jun 18
0
[PATCH] sftp-server argument error handling
...log_level, log_facility, log_stderr);
+ /* Send any argument errors to stderr */
+ log_init(__progname, log_level, log_facility, 1);
while (!skipargs && (ch = getopt(argc, argv, "C:f:l:che")) != -1) {
switch (ch) {
@@ -1237,12 +1238,12 @@
case 'l':
log_level = log_level_number(optarg);
if (log_level == SYSLOG_LEVEL_NOT_SET)
- error("Invalid log level \"%s\"", optarg);
+ fatal("Invalid log level \"%s\"", optarg);
break;
case 'f':
log_facility = log_facility_number(optarg);
if (log_level == SYSLOG_F...
2001 Jul 27
0
openssh-2.9p2 compilation on LynxOS
...`getservbynareadconf.o: In function
`parse_token':
/openssh/openssh-2.9p2/readconf.c(235): undefined
reference to `strcasecmp'
./libssh.a(log.o): In function `log_facility_number':
/openssh/openssh-2.9p2/log.c(97): undefined reference
to `strcasecmp'
./libssh.a(log.o): In function `log_level_number':
/openssh/openssh-2.9p2/log.c(108): undefined reference
to `strcasecmp'
./libssh.a(log.o): In function `do_log':
/openssh/openssh-2.9p2/log.c(383): undefined reference
to `openlog'
/openssh/openssh-2.9p2/log.c(384): undefined reference
to `syslog'
/openssh/openssh-2.9p2/log.c...
2004 Mar 23
2
A question on Compilation errors...
...h-3.8p1/sshconnect.c(545): undefined reference to `strncasecmp'
/openssh-3.8p1/sshconnect.c(549): undefined reference to `strncasecmp'
./libssh.a(log.o): In function `log_facility_number':
/openssh-3.8p1/log.c(101): undefined reference to `strcasecmp'
./libssh.a(log.o): In function `log_level_number':
/openssh-3.8p1/log.c(113): undefined reference to `strcasecmp'
./libssh.a(log.o): In function `do_log':
/openssh-3.8p1/log.c(329): undefined reference to `openlog'
/openssh-3.8p1/log.c(330): undefined reference to `syslog'
/openssh-3.8p1/log.c(331): undefined reference to `c...
2002 Dec 18
2
patch for openssh3.5p1 - adds logging option
...h-3.5p1/log.h 2002-12-18 10:38:48.000000000 -0500
@@ -48,7 +48,7 @@
SYSLOG_LEVEL_NOT_SET = -1
} LogLevel;
-void log_init(char *, LogLevel, SyslogFacility, int);
+void log_init(char *, LogLevel, SyslogFacility, int, char *);
SyslogFacility log_facility_number(char *);
LogLevel log_level_number(char *);
diff -urN openssh-3.5p1-orig/servconf.c openssh-3.5p1/servconf.c
--- openssh-3.5p1-orig/servconf.c 2002-12-18 10:10:13.000000000 -0500
+++ openssh-3.5p1/servconf.c 2002-12-18 10:20:33.000000000 -0500
@@ -64,6 +64,7 @@
options->listen_addrs = NULL;
options->num_host_key_files =...
2001 Nov 12
4
Please test -current
Could people please test -current? We will be making a release fairly
soon.
-d
--
| By convention there is color, \\ Damien Miller <djm at mindrot.org>
| By convention sweetness, By convention bitterness, \\ www.mindrot.org
| But in reality there are atoms and space - Democritus (c. 400 BCE)
2001 Nov 20
3
problem with AFS token forwarding
Hello,
I came across an interoperability problem in OpenSSH 3.0p1 and 3.0.1p1
concerning the AFS token forwarding. That means that the new versions are
not able to exchange AFS tokens (and Kerberos TGTs) with older OpenSSH
releases (including 2.9p2) and with the old SSH 1.2.2x. In my opinion this
problem already existed in Openssh 2.9.9p1, but I have never used this
version (I only looked at the