similar to: [PATCH] Updated gitignore to ignore sshd-session and sshd-auth targets

Displaying 20 results from an estimated 1200 matches similar to: "[PATCH] Updated gitignore to ignore sshd-session and sshd-auth targets"

2024 Apr 11
0
[PATCH] sshsig: check hashalg before selecting the RSA signature algorithm
`ssh-keygen -Y sign` only selects the signing algorithm `rsa-sha2-512` and this prevents ssh-agent implementations that can't support sha512 from signing messages. An example of this is TPMs which mostly only really supports sha256 widely. This change enables `ssh-keygen -Y sign` to honor the `hashalg` option for the signing algorithm. Signed-off-by: Morten Linderud <morten at
2023 Oct 20
0
[PATCH] Clean up the regress directory with make clean
This patch removes the various keys and support files created during make tests. It might not be as compact as it could be, and I'd be happy to get comments on that, but it does work. diff --git a/Makefile.in b/Makefile.in index 70287f51f..0f1ef844d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -296,6 +296,45 @@ clean: regressclean rm -f regress/misc/sk-dummy/*.o rm -f
2024 Oct 29
1
[Bug 3748] New: "webauthn-sk-ecdsa-sha2-nistp256@openssh.com" signature type not supported from ssh agent
https://bugzilla.mindrot.org/show_bug.cgi?id=3748 Bug ID: 3748 Summary: "webauthn-sk-ecdsa-sha2-nistp256 at openssh.com" signature type not supported from ssh agent Product: Portable OpenSSH Version: 9.7p1 Hardware: 68k OS: Mac OS X Status: NEW Severity: enhancement
2009 Sep 11
1
[PATCH] .gitignore: Ignore a couple of auto-generate m4 scripts
--- .gitignore | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index a6caaf9..ae3b16d 100644 --- a/.gitignore +++ b/.gitignore @@ -45,6 +45,7 @@ daemon/install-sh daemon/missing daemon/names.c daemon/stubs.c +daemon/m4/stddef_h.m4 depcomp .deps df/virt-df.1 @@ -114,6 +115,7 @@ libtool *.lo localconfigure ltmain.sh +m4/gnulib-cache.m4
2011 Dec 23
1
[PATCH] gitignore: ignore the guestfs.* directory
Let git ignore the guestfs.* directorys. Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com> --- .gitignore | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index dcf2af1..4d4556e 100644 --- a/.gitignore +++ b/.gitignore @@ -367,3 +367,4 @@ tools/virt-*.pl /gnulib .git-module-status .guestfs-* +guestfs.* -- 1.7.8
2020 Apr 25
2
[PATCH 1/3] Add private key protection information extraction to ssh-keygen
Add private key protection information extraction to shh-keygen using -v option on top of -y option which is already parsing the private key. Technically, the passphrase isn't necessary to do this, but it is the most logical thing to do for me. Adding this to -l option is not appropriate because fingerprinting is using the .pub file when available. An other idea is to add a new option, I
2018 Oct 22
2
[PATCH] ssh: Add missing openssl-compat.h where needed
OpenSSL_add_all_algorithms has been deprecated with 1.1. Compatibility is needed. Signed-off-by: Rosen Penev <rosenp at gmail.com> --- ssh-keysign.c | 1 + ssh_api.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/ssh-keysign.c b/ssh-keysign.c index 744ecb4f..bcd1508c 100644 --- a/ssh-keysign.c +++ b/ssh-keysign.c @@ -40,6 +40,7 @@ #include <openssl/evp.h> #include
2020 Sep 27
0
Announce: OpenSSH 8.4 released
OpenSSH 8.4 has just been released. It will be available from the mirrors listed at https://www.openssh.com/ shortly. OpenSSH is a 100% complete SSH protocol 2.0 implementation and includes sftp client and server support. Once again, we would like to thank the OpenSSH community for their continued support of the project, especially those who contributed code or patches, reported bugs, tested
2012 Jan 13
0
[PATCH].gitignore: ocaml: add xenlight.mli
I will be committing this shortly. Ian. From: Ian Jackson <ian.jackson@eu.citrix.com> Subject: [PATCH] .gitignore: ocaml: add xenlight.mli Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com> --- .gitignore | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index 625ceee..297191e 100644 --- a/.gitignore +++ b/.gitignore @@ -359,6
2012 Jan 04
0
Rails 313: .gitignore has absolute paths - correct?
I just installed 313 and ran ''rails new test'' I notice the .gitignore file has entries with ''/'' prepended. Is this correct?? -joe # See http://help.github.com/ignore-files/ for more about ignoring files. # # If you find yourself ignoring temporary files generated by your text editor # or operating system, you probably want to add a global ignore instead: #
2006 Jul 16
1
[patch] klibc add toplevel .gitignore
start by ignoring make generated objects. subdirectories need specific rules later. makes git status more meaningfull. Signed-off-by: maximilian attems <maks at sternwelten.at> --- .gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) --- /dev/null 2006-07-14 10:57:32.128246500 +0200 +++ klibc.git/.gitignore 2006-07-16 20:29:39.000000000 +0200 @@ -0,0 +1,11 @@ +# NOTE!
2012 Nov 29
0
[PATCH] Add gtags and tags rune in gitignore.
Signed-off-by: Wei Liu <wei.liu2@citrix.com> --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index f6edc43..d849a4b 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,11 @@ *.spot *.spit TAGS +GTAGS +GRTAGS +GPATH +GSYMS +tags cscope.files cscope.in.out cscope.out -- 1.7.10.4
2009 Aug 08
0
[PATCH] gitignore: add *.sym
*.sym files are generated; ignore them. Signed-off-by: Sebastian Herbszt <herbszt at gmx.de> diff --git a/.gitignore b/.gitignore index c786675..83632a9 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ *.rej *.s *.sec +*.sym *.sys *_bin.c *~
2007 Jul 13
0
3 commits - configure.ac .gitignore libswfdec/swfdec_event.c libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_swf_instance.c
.gitignore | 2 +- configure.ac | 2 +- libswfdec/swfdec_event.c | 2 +- libswfdec/swfdec_sprite_movie.c | 2 +- libswfdec/swfdec_swf_instance.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) New commits: diff-tree 0a9188fdb36edbe11775ca410f11551090cc7135 (from e20317c4a4d2b95516b6339bbd3dc89c5d0b777a) Author: Benjamin Otte
2009 Aug 05
2
[PATCH] Add some newly-untracked files to .gitignore
--- .gitignore | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/.gitignore b/.gitignore index 147e1cb..dcea811 100644 --- a/.gitignore +++ b/.gitignore @@ -154,10 +154,21 @@ po/POTFILES po/remove-potcdate.sed po/stamp-it po/stamp-po +po/LINGUAS +po/Makefile.in.in +po/Makevars +po/Rules-quot +po/boldquot.sed +po/en at boldquot.header +po/en at quot.header
2012 Nov 13
0
[LLVMdev] [PATCH] .gitignore: add rules for a clean worktree
On Tue, Nov 13, 2012 at 6:02 PM, Ramkumar Ramachandra <artagnon at gmail.com> wrote: > Add several .gitignore rules to various directories to ensure a clean > worktree after a default build. Hi, These gitignore lists require maintenance. Is is possible to express the same set of filenames as patterns like '*.inc' in the root gitigrore file, so that adding/removing a new
2012 Nov 13
2
[LLVMdev] [PATCH] .gitignore: add rules for a clean worktree
Hi Dmitri, Dmitri Gribenko wrote: > On Tue, Nov 13, 2012 at 6:02 PM, Ramkumar Ramachandra > <artagnon at gmail.com> wrote: >> Add several .gitignore rules to various directories to ensure a clean >> worktree after a default build. > > Hi, > > These gitignore lists require maintenance. Is is possible to express > the same set of filenames as patterns like
2012 Nov 13
0
[LLVMdev] [PATCH] .gitignore: add rules for a clean worktree
On Nov 13, 2012, at 8:34 AM, Ramkumar Ramachandra <artagnon at gmail.com> wrote: > Hi Dmitri, > > Dmitri Gribenko wrote: >> On Tue, Nov 13, 2012 at 6:02 PM, Ramkumar Ramachandra >> <artagnon at gmail.com> wrote: >>> Add several .gitignore rules to various directories to ensure a clean >>> worktree after a default build. >> >> Hi,
2012 Nov 13
3
[LLVMdev] [PATCH] .gitignore: add rules for a clean worktree
> I was under the impression that in-source-tree builds were an unsupported > configuration. It's certainly strongly discouraged. I'm not fond of the > idea of making it easier, especially when there's a maintenance cost to > doing so. > Strongly discouraged, and yes, this. -eric -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Nov 13
0
[LLVMdev] [PATCH] .gitignore: add rules for a clean worktree
On Tue, Nov 13, 2012 at 12:04 PM, Eric Christopher <echristo at gmail.com> wrote: >> I was under the impression that in-source-tree builds were an unsupported >> configuration. It's certainly strongly discouraged. I'm not fond of the idea >> of making it easier, especially when there's a maintenance cost to doing so. > > Strongly discouraged, and yes,