diff options
author | Colin Watson <cjwatson@debian.org> | 2014-02-09 16:10:19 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2014-02-09 16:25:52 +0000 |
commit | d26565af8589d88f824b26f31da493f1056efcf4 (patch) | |
tree | ff5e3b9c0fbb553f4f4c6e8836070659f266108e /debian/patches/quieter-signals.patch | |
parent | 16fb149cbb42efe0cb13f3edbafcb1a21ecfe574 (diff) | |
parent | bb5616c94d6d6b97890e90dd01a7ad07c663dc0b (diff) |
Initialize git-dpm
Diffstat (limited to 'debian/patches/quieter-signals.patch')
-rw-r--r-- | debian/patches/quieter-signals.patch | 33 |
1 files changed, 21 insertions, 12 deletions
diff --git a/debian/patches/quieter-signals.patch b/debian/patches/quieter-signals.patch index 32f4cfc67..5cb0146d8 100644 --- a/debian/patches/quieter-signals.patch +++ b/debian/patches/quieter-signals.patch | |||
@@ -1,22 +1,31 @@ | |||
1 | Description: Reduce severity of "Killed by signal %d" | 1 | From da5b4ce7296ada332d70133a9ec02ba71c742b7d Mon Sep 17 00:00:00 2001 |
2 | This produces irritating messages when using ProxyCommand or other programs | 2 | From: Peter Samuelson <peter@p12n.org> |
3 | that use ssh under the covers (e.g. Subversion). These messages are more | 3 | Date: Sun, 9 Feb 2014 16:09:55 +0000 |
4 | normally printed by the calling program, such as the shell. | 4 | Subject: Reduce severity of "Killed by signal %d" |
5 | . | 5 | |
6 | According to the upstream bug, the right way to avoid this is to use the -q | 6 | This produces irritating messages when using ProxyCommand or other programs |
7 | option, so we may drop this patch after further investigation into whether | 7 | that use ssh under the covers (e.g. Subversion). These messages are more |
8 | any software in Debian is still relying on it. | 8 | normally printed by the calling program, such as the shell. |
9 | Author: Peter Samuelson <peter@p12n.org> | 9 | |
10 | According to the upstream bug, the right way to avoid this is to use the -q | ||
11 | option, so we may drop this patch after further investigation into whether | ||
12 | any software in Debian is still relying on it. | ||
13 | |||
10 | Author: Colin Watson <cjwatson@debian.org> | 14 | Author: Colin Watson <cjwatson@debian.org> |
11 | Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1118 | 15 | Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1118 |
12 | Bug-Debian: http://bugs.debian.org/313371 | 16 | Bug-Debian: http://bugs.debian.org/313371 |
13 | Last-Update: 2013-09-14 | 17 | Last-Update: 2013-09-14 |
14 | 18 | ||
15 | Index: b/clientloop.c | 19 | Patch-Name: quieter-signals.patch |
16 | =================================================================== | 20 | --- |
21 | clientloop.c | 6 ++++-- | ||
22 | 1 file changed, 4 insertions(+), 2 deletions(-) | ||
23 | |||
24 | diff --git a/clientloop.c b/clientloop.c | ||
25 | index dc76d69..f2f474e 100644 | ||
17 | --- a/clientloop.c | 26 | --- a/clientloop.c |
18 | +++ b/clientloop.c | 27 | +++ b/clientloop.c |
19 | @@ -1717,8 +1717,10 @@ | 28 | @@ -1717,8 +1717,10 @@ client_loop(int have_pty, int escape_char_arg, int ssh2_chan_id) |
20 | exit_status = 0; | 29 | exit_status = 0; |
21 | } | 30 | } |
22 | 31 | ||