Displaying 20 results from an estimated 900 matches similar to: "line_abbrevname patch"
2001 Nov 20
0
PATCH: Fixing last/utmpx for Solaris
In case it is any help, here is the patch against openssh-3.0.1p1 that
corrects the problem with last reporting on Solaris that I sent to the
list a week or so ago against 3.0p1. There was no conversation about this
aside from Rip Loomis' comment about including it to support BSM auditing
- does this present a problem for other OSes to include the ut_name field
in the utmpx entry? Should this
2000 Nov 10
0
Irix job limits patch
I've finished the 2.3 patch for Irix job limits. It's a bit longer than
a couple of lines. The bulk of the patch changes the configuration files to
enable the job limits support on Irix. The meat of the change is in
session.c where the new job containter is created at the same point as the
other Irix specific actions.
- Dennis
--- config.h.in Sun Nov 5 21:25:18 2000
+++ config.h.in
2002 Mar 07
1
Irix joblimits failure (was: Re: New snapshot)
IRIX has a compatibility mechanism that lets you test for optional symbols (like jlimit_start) at run-time. I think these patches will let all all IRIX 6.5 systems build images that will test for job limit support dynamically:
--- ./configure.ac Wed Feb 27 01:12:35 2002
+++ ../openssh-3.1p1/./configure.ac Thu Mar 7 15:50:21 2002
@@ -115,7 +115,7 @@
AC_DEFINE(WITH_IRIX_ARRAY)
2002 Jan 29
0
[Bug 84] New: last command provides incorrect information on Solaris 8
http://bugzilla.mindrot.org/show_bug.cgi?id=84
Summary: last command provides incorrect information on Solaris 8
Product: Portable OpenSSH
Version: -current
Platform: UltraSparc
OS/Version: Solaris
Status: NEW
Severity: normal
Priority: P2
Component: ssh
AssignedTo: openssh-unix-dev at mindrot.org
2001 Nov 15
1
Patch for "last" providing incorrect information on Solaris 8
I have put together a simple set of diffs that corrects the problem
described by Steven Fishback <sfishback at interpath.net> on 10-30 on this
list regarding incorrect information reported by last on Solaris. The
patches merely pass along the username in the utmpx record for a logout.
Is there any reason why this would be a problem with other OSes? If not,
maybe this could be rolled into the
2003 May 26
1
[patch] port-irix.c: refine jlimit support
--- openbsd-compat/port-irix.c.orig 2002-04-07 03:58:33.000000000 +0900
+++ openbsd-compat/port-irix.c 2003-05-27 02:11:07.620000380 +0900
@@ -7,6 +7,12 @@
#endif /* WITH_IRIX_PROJECT */
#ifdef WITH_IRIX_JOBS
#include <sys/resource.h>
+#include <optional_sym.h>
+# if !defined(JLIMIT_CPU)
+typedef __int64_t jid_t;
+extern jid_t jlimit_startjob(char *, uid_t, char *);
+# pragma
2002 Feb 15
1
IRIX cleanup.
Can I get someone from the IRIX group to apply this patch to the
3.0.2pX release and reconfigure/compile. I'm trying to clean out
do_child() in perparation of a larger patch to that part of the code.
Also if someone could give me the hint for the right compiler magic
to wrap the code in instead of what I'm doing now. I'd be thankful.
Thanks
- Ben
diff -urN
2005 May 12
0
[PATCH] Trusted IRIX Support
I developed a better prototype quicker than I expected.
Please provide feedback. It's been a few years since I've used autoconf,
so I'm not certain the new defines were integrated correctly.
Jason
diff -r -C3 openssh-4.0p1/acconfig.h openssh-4.0p1.trix/acconfig.h
*** openssh-4.0p1/acconfig.h Fri Feb 25 17:07:38 2005
--- openssh-4.0p1.trix/acconfig.h Thu May 12 10:32:25
2005 Jun 29
1
inconsistent ut_id values in the utmp(x) file
Hi,
In loginrec.c, the 'line' string utility function line_abbrevname() returns
the last four characters of the terminal file path. This returned value is
assigned to the utmp structure member ut_id[4].
Some sample ut_id values are shown below:
/dev/pts/1 will have ut_id set to ts/1
/dev/pts/2 will have ut_id set to ts/2
.
.
/dev/pts/9 will have ut_id set to ts/9
/dev/pts/10
2002 Apr 12
0
[Bug 214] New: IRIX utmp problem loginrec.c: line_abbrevname() goes wrong
http://bugzilla.mindrot.org/show_bug.cgi?id=214
Summary: IRIX utmp problem loginrec.c: line_abbrevname() goes
wrong
Product: Portable OpenSSH
Version: 3.1p1
Platform: MIPS
URL: http://groups.google.de/groups?hl=de&selm=3B979A7D.10809
06%40nowhere.org&rnum=4
OS/Version: IRIX
2002 Dec 29
0
[Bug 460] New: ut_addr_v6 not used
http://bugzilla.mindrot.org/show_bug.cgi?id=460
Summary: ut_addr_v6 not used
Product: Portable OpenSSH
Version: 3.5p1
Platform: All
URL: http://bugs.debian.org/167867
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: openssh-unix-dev at
2001 Jun 29
1
wtmpx problem on Solaris 8 sparcv9 (64bit) environment
Hello
When I was using OpenSSH-2.9p2 in Solaris 8 sparcv9 (64bit)
environment, I found some trouble that wtmpx has broken.
The size of utmpx structure object becomes larger than 32 bit environment
in sparcv9 environment.Therefore, instead of using utmpx structure object,
using futmpx structure object is better.
In sparcv9 environment, futmpx structure object is used instead of utmpx
structure
2002 Jun 26
0
IRIX 6.5 patch for Compression with UsePrivilegeSeparation
Simon Cooper already mailed in a patch to get the effects of MAP_ANON on
IRIX systems, but it was against openssh/3.3p1. I've reapplied his
patach to openssh/3.4p1 and include it as an attachment.
Here's his explanation:
> I noticed that the recent release requires the existence of MAP_ANON to get
> an anonymous memory region. In Irix the equivalent functionality can be
>
2000 Dec 01
3
two irix patches
First, does anyone know why the following was added in the first place?
It purposely strips the tty off of tty names (e.g., ttyq1 becomes q1)
before sticking them in wtmp. IRIX then has no idea what terminal people
are attached to, causing commands like wall to fail (as they try to open
/dev/q1). Maybe this should be version specific?
--- openssh-SNAP-20001129.orig/loginrec.c Thu Nov 9
2004 Apr 28
1
[Bug 855] doesn't properly log logout event in utmp entry when pts bigger than 999
http://bugzilla.mindrot.org/show_bug.cgi?id=855
Summary: doesn't properly log logout event in utmp entry when pts
bigger than 999
Product: Portable OpenSSH
Version: 3.8p1
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo:
2002 Apr 23
1
[Bug 214] IRIX utmp problem loginrec.c: line_abbrevname() goes wrong
http://bugzilla.mindrot.org/show_bug.cgi?id=214
djm at mindrot.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
------- Additional Comments From djm at mindrot.org 2002-04-23 23:08 -------
Similar patch applied - please test tommorow's
2000 Jul 03
0
FreeBSD 3.5-STABLE
gcc -g -O2 -Wall -I/usr/local/ssl/include -DETCDIR=\"/usr/local/etc\" -DSSH_PROGRAM=\"/usr/local/bin/ssh\" -DSSH_ASKPASS_DEFAULT=\"/usr/local/libexec/ssh/ssh-askpass\" -DHAVE_CONFIG_H -c loginrec.c
loginrec.c: In function `construct_utmp':
loginrec.c:619: structure has no member named `ut_user'
loginrec.c:619: structure has no member named `ut_user'
2004 Apr 08
3
patch for "gone - no logout" output from last(1)
Greetings,
After upgrading one of my systems to the linux 2.6.4 kernel, it started
having problems recording the logout entries in the wtmp file. I traced
this to a bug in loginrec.c, where a variable (line) is declared as an
array of 8 characters. This length is substantially shorter than the 16
character array size of ut_line, so openssh effectively truncates the
pseudo-tty name when the
2001 Jul 11
0
Solaris 2.6: Undefined symbol seed_rng
Hi,
I hope I'm not asking some FAQ, but I can't compile openssh-2.9p2 on
maas34:openssh-2.9p2 {173} uname -a
SunOS maas34 5.6 Generic_105181-23 sun4u sparc SUNW,Ultra-5_10
using:
maas34:openssh-2.9p2 {174} gcc -v
Reading specs from /opt/local/gcc-2.95.2/lib/gcc-lib/sparc-sun-solaris2.6/2.95.2/specs
gcc version 2.95.2 19991024 (release)
I get:
maas34:openssh-2.9p2 {172}
2002 Apr 26
0
[Bug 228] New: pam_krb5 on Solaris creates credentials with wrong owner
http://bugzilla.mindrot.org/show_bug.cgi?id=228
Summary: pam_krb5 on Solaris creates credentials with wrong owner
Product: Portable OpenSSH
Version: 3.1p1
Platform: UltraSparc
OS/Version: Solaris
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: openssh-unix-dev at mindrot.org