Displaying 9 results from an estimated 9 matches similar to: "a patch for 3.4, please"
2001 Feb 21
0
2.5.1p1 Solaris ssh can't talk to sshd
I built KTH Kerberos 1.0.6, OpenSSL 0.9.6, zlib 1.1.3 and OpenSSH
2.5.1p1 with WorkShop 5.0 on Solaris 2.6; /dev/random is provided by
cryptorand from SUNWski.
ssh -v -v -v produces the same output as ssh -v
> ssh -v foobar
OpenSSH_2.5.1p1, SSH protocols 1.5/2.0, OpenSSL 0x0090600f
debug: Reading configuration data /etc/ssh/ssh_config
debug: ssh_connect: getuid 17454 geteuid 0 anon 0
debug:
1998 Dec 04
1
Red Hat 5.2''s login doesn''t do PAM session management correctly
This is a "heads up" for anyone who relies on PAM session management in
order to clean up after a login session. Red Hat 5.2''s login does not
perform PAM session management correctly, potentially resulting in sessions
which lose their authentication before the login shell starts.
login.c in Red Hat 5.2''s util-linux package was modified so that it no
longer forks a
1998 Dec 03
2
interactions between OPIE-ftpd and RH5.2
Ran into a weird problem, and this seemed a good forum to toss it out into
-- if I've gaffed, please let me know.
Just upgraded my RH5.0 box to RH5.2. Went well, worked nearly seamlessly.
When running 5.0, though, I'd installed the opie-fied ftpd that comes with
the most recent opie package (ftp://ftp.inner.net/pub/opie/opie-2.32.tar.gz)
and had it work without a hitch. I'd also
2003 May 02
2
Suppressing Scientific Notation
R gurus,
Every so often(*) someone asks how to suppress scientific notation in
printing, so I thought I'd give it a shot, but I need some help.
The formatting decision is made(**) on line 286 of src/main/format.c :
if (mF <= *m) { /* IFF it needs less space : "F" (Fixpoint) format */
where mF is the number of characters for "normal" printing and *m is the number
2004 Sep 10
5
Bug with FLAC raw encoding
I found a bug with FLAC v0.6 raw encoding. It appears that the file
pointer in the source file is not reset after seeking to the end for
checking the size. I've attached a patch.
I'm excited about FLAC!! I've been looking for a good GPL lossless RAW
audio compressor for use with sound fonts. Sound font files contain 16
bit samples that are word aligned, so just treating it as raw
2000 Oct 07
0
OpenSSH changes for BSD/OS
The following are patches against openssh 2.1.1p4 to add
support for the BSD_AUTH authentication mechanisms. It allows the
use of non-challenge/response style mechanisms (which styles are
allowed my be limited by appropriate auth-ssh entries in login.conf).
The patches also add support for calling setusercontext for the
appropriate class when called with a command (so that the PATH, limits,
2006 Dec 11
2
Add option to TFTP client to ignore ':' in file name (re-submit)
Re-submitted for 0.44.
b.t.w. I notice that the new 0.44 'R' option is not documented in the
tftp man page.
-----------------------------------------
I have encountered a situation where I would like to use tftp-hpa to
retrieve a file that resides within an absolute path containing a ':'
character. Ala, "tftp foobar -c get C:2/tftpdir/myfile". Since the
tftp client
2013 Jan 23
132
[PATCH 00/45] initial arm v8 (64-bit) support
First off, Apologies for the massive patch series...
This series boots a 32-bit dom0 kernel to a command prompt on an ARMv8
(AArch64) model. The kernel is the same one as I am currently using with
the 32 bit hypervisor
I haven''t yet tried starting a guest or anything super advanced like
that ;-). Also there is not real support for 64-bit domains at all,
although in one or two places I
2009 Dec 07
1
Cucumber and general Ruby question
Hello,
I have this cucumber step definition:
Given /^the site has pages "(.+)" and "(.+)"$/ do | page_1, page_2 |
Page.create :title => page_1 if Page.find_by_title(page_1).nil?
Page.create :title => page_2 if Page.find_by_title(page_2).nil?
end
This works, but obviously I would like to DRY it up. I was thinking along
the lines.
Given /^the site has pages