Displaying 3 results from an estimated 3 matches for "kebl".
Did you mean:
keel
1999 Dec 01
1
[Fwd: Serious Bug Report: OpenSSH]
Can anyone using PAM and rsa-rhosts authentication replicate this?
Damien
-------------- next part --------------
An embedded message was scrubbed...
From: Adrian Baugh <adrian at merlin.keble.ox.ac.uk>
Subject: Serious Bug Report: OpenSSH
Date: Wed, 1 Dec 1999 02:38:56 +0000 (GMT)
Size: 3926
Url: http://lists.mindrot.org/pipermail/openssh-unix-dev/attachments/19991202/f994f86a/attachment.mht
1999 Dec 07
0
ANNOUNCE: openssh-1.2pre16
...mple).
Full changelog:
19991207
- sshd Redhat init script patch from Jim Knoble <jmknoble at pobox.com>
fixes compatability with 4.x and 5.x
- Fixed default SSH_ASKPASS
- Fix PAM account and session being called multiple times. Problem
reported by Adrian Baugh <adrian at merlin.keble.ox.ac.uk>
- Merged more OpenBSD changes:
- [atomicio.c authfd.c scp.c serverloop.c ssh.h sshconnect.c sshd.c]
move atomicio into it's own file. wrap all socket write()s which
were doing write(sock, buf, len) != len, with atomicio() calls.
- [auth-skey.c]
fd leak
-...
2013 Apr 09
1
[LLVMdev] How to get a pointer to a constant struct?
Hi,
I'm trying to create a constant (named) struct and store a pointer to it
in another struct using the C Api (and the llvm-fs bindings). As a
contrived example, this is what I want to do:
%A = type { %VTable* }
%VTable = type { void (%A*)*, void (%A*)* }
define void @main(%A* %a) {
entry:
%0 = getelementptr inbounds %A* %a, i32 0, i32 0 ; [type=%VTable**]
%2 = somehow make a