Displaying 12 results from an estimated 12 matches for "rupn".
Did you mean:
run
2011 Jul 17
2
openSSH 5.8p2 BindPort patch
Hi, i have written a patch for openSSH 5.8p2 which allows the user to
set the local source port. The patch is as follows:
diff -rupN openssh-5.8p2//readconf.c openssh-5.8p2-srcport//readconf.c
--- openssh-5.8p2//readconf.c 2010-11-20 04:19:38.000000000 +0000
+++ openssh-5.8p2-srcport//readconf.c 2011-07-17 20:57:52.385044096 +0100
@@ -125,7 +125,7 @@ typedef enum {
oGlobalKnownHostsFile2, oUserKnownHostsFile2, oPubkeyAuthentic...
2012 Feb 12
0
PATCH: multiple BindAddress
...yFile ~/.ssh/ipv6
Host ipv4_ipv6.host
IdentityFile ~/.ssh/secr3t
RemoteForward 127.0.0.1:1234 127.0.0.1:1234
DynamicForward 6666
I think is much easier to have BindAddress configuration in top of config file.
Thanks,
Tautvydas ?elvys
--
This patch is made on openssh-5.9p1 version
--
diff -rupN orig/openssh-5.9p1/readconf.c openssh-5.9p1/readconf.c
--- orig/openssh-5.9p1/readconf.c 2011-05-29 14:42:31.000000000 +0300
+++ openssh-5.9p1/readconf.c 2012-02-12 15:43:43.302048950 +0200
@@ -641,8 +641,10 @@ parse_char_array:
goto parse_string;
case oBindAddress:
- charptr = &options-...
2013 Jan 31
2
OpenSSH NoPty patch
...ur way in case it's something you guys can
use.
Thanks,
Teran
PS: I hereby release my changes in the patch into the public domain, so
you can do whatever you want with it.
PPS: Please include me in all replies directly as I'm not on the list.
-------------- next part --------------
diff -rupN openssh-6.1p1/servconf.c openssh-6.1p1-new/servconf.c
--- openssh-6.1p1/servconf.c 2012-07-31 02:22:38.000000000 +0000
+++ openssh-6.1p1-new/servconf.c 2013-01-31 17:12:36.000000000 +0000
@@ -85,6 +85,7 @@ initialize_server_options(ServerOptions
options->x11_forwarding = -1;
options->x11_...
2012 Apr 17
0
Minor bug: plot.table and Axis.table (partially) ignore graphical parameters (patch included)
...is.
So, please consider applying the attached (not fully tested, but
trivial) patch.
Thank you and best wishes,
Martin
--
Dr. Martin Becker, Akad. Rat
Statistics and Econometrics
Saarland University
Campus C3 1, Room 217
66123 Saarbruecken
Germany
-------------- next part --------------
diff -rupN rev59060/trunk/src/library/graphics/R/axis.R patched/trunk/src/library/graphics/R/axis.R
--- rev59060/trunk/src/library/graphics/R/axis.R 2012-04-17 10:18:28.054985800 +0200
+++ patched/trunk/src/library/graphics/R/axis.R 2012-04-17 10:22:01.636201900 +0200
@@ -54,10 +54,7 @@ Axis.table <- funct...
2012 Oct 02
1
patch proposal for ssh-copy-id script
Hello everybody,
I write an update version of ssh-copy-id script in order to support
sshd non running on standard port 22.
So I added another parameter to the script to allow user to specify
the daemon port.
I've also changed the way the command line parameter are retrieved in
order to have a more "robust" way of getting them using getopts.
Due to this change host name must be
2014 Feb 10
0
Patch for bestfcom driver
....
The patch is against the 2.7.1 bestfcom driver. Please pardon any errors in my patch submission has I have only submitted a patch once or twice before. This patch should fix a situation where some BestPower FerrUPS FE2.1KVA UPS detection fails because of extra whitespace in the model ID.
diff -rupN release-orig/nut-2.7.1/drivers/bestfcom.c release-patched/nut-2.7.1/drivers/bestfcom.c
--- release-orig/nut-2.7.1/drivers/bestfcom.c 2013-07-31 13:41:31.000000000 -0700
+++ release-patched/nut-2.7.1/drivers/bestfcom.c 2014-02-10 10:22:35.405305828 -0800
@@ -582,6 +582,13 @@ void upsdrv_ini...
2013 Mar 12
0
flac 1.3.0pre2 pre-release
...abbag_dynamic.vcproj
>
> Please try this and if that fixes it, please send a patch containing
> only that change.
I thought Ben Allison would have made a patch. Here's a patch for this.
I suppose we were all blind at first for the cause.
-------------- next part --------------
diff -rupN a/src/share/grabbag/grabbag_static.vcproj b/src/share/grabbag/grabbag_static.vcproj
--- a/src/share/grabbag/grabbag_static.vcproj Wed Jan 2 13:49:55 2013
+++ b/src/share/grabbag/grabbag_static.vcproj Tue Mar 12 09:46:01 2013
@@ -163,6 +163,10 @@
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-...
2013 Mar 11
2
flac 1.3.0pre2 pre-release
Janne Hyv?rinen wrote:
> With the sources as they are compiling produces these errors (this on
> MSVC 2012 SP1 Express):
>
> Error 1 error LNK2001: unresolved external symbol
> _FLAC__bitreader_bits_left_for_byte_alignment
> G:\Programming\flac-1.3.0pre2\src\flac\libFLAC_static.lib(stream_decoder.obj)
Ben Alison is working on tthis. Lets allow that work to come to a
2015 Dec 26
0
About data/token send/receive protocol part and more
...s,
I'd like to ask you a couple of questions.
***** 1. *****
If I'd like to send additional metadata for each block, what would be the easiest and less intrusive way to do this? The following seems to work:
----------------------------------------------------------------------------
diff -rupN ../rsync.git/token.c ./token.c
--- ../rsync.git/token.c 2015-11-03 18:21:36.264183118 +0100
+++ ./token.c 2015-12-26 03:43:09.043841052 +0100
@@ -226,8 +226,12 @@ static int32 simple_recv_token(int f, ch
if (residue == 0) {
int32 i = read_int(f);
- i...
2009 Apr 09
7
Test: patch to add adva,ced d3d settings in winecfg
Hello everybody...
My patch to add advanced d3d settings in winecfg is almost ready.
In fact, i only have to figure out how to detect video memory size to
display it when no key is set to force it or to reset. Stefan D told
me to use DirectDraw, but i wouldn't find.
So that is the last thing (except some better naming...) to do for this patch.
Everything works well and i would like some
2014 Feb 10
0
BestPower Ferrups driver glitch with f commands
The problem will only affect newer firmwares on the BestPower FerrUPS 2.1kva units. Additional white-space was the issue. I added a if clause to the bestfcom driver to account for this without breaking what was there. Here is the patch:
diff -rupN release-orig/nut-2.7.1/drivers/bestfcom.c release-patched/nut-2.7.1/drivers/bestfcom.c
--- release-orig/nut-2.7.1/drivers/bestfcom.c 2013-07-31 13:41:31.000000000 -0700
+++ release-patched/nut-2.7.1/drivers/bestfcom.c 2014-02-10 10:22:35.405305828 -0800
@@ -582,6 +582,13 @@ void upsdrv_ini...
2014 Feb 10
2
BestPower Ferrups driver glitch with f commands
I did the testing you suggested, and it was indeed the whitespace. I added another if clause test to the function and everything seems to work. I have working driver that I will email a patch for this list. My coworker says the model ID is configurable though, so we will try that first, which would negate the need to patch the driver.
________________________________________
From: Charles Lepple