summaryrefslogtreecommitdiff
path: root/debian/patches/no-constraint-fallback.patch
blob: dc01085cb7a4a094110c598b65e27bd4a39bca3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
Description: ssh-add: Don't discard constraints when agent refuses request
 This was a useful migration measure back in 2002 when constraints were new,
 but just adds risk now.
Origin: upstream, http://bazaar.launchpad.net/~vcs-imports/openssh/main/revision/5777
Author: Daniel Kahn Gillmor <dkg@fifthhorseman.net>
Bug: https://bugzilla.mindrot.org/show_bug.cgi?id=1612
Bug-Ubuntu: https://bugs.launchpad.net/bugs/209447
Last-Update: 2010-02-28

Index: b/authfd.c
===================================================================
--- a/authfd.c
+++ b/authfd.c
@@ -545,12 +545,6 @@
 	return decode_reply(type);
 }
 
-int
-ssh_add_identity(AuthenticationConnection *auth, Key *key, const char *comment)
-{
-	return ssh_add_identity_constrained(auth, key, comment, 0, 0);
-}
-
 /*
  * Removes an identity from the authentication server.  This call is not
  * meant to be used by normal applications.
Index: b/authfd.h
===================================================================
--- a/authfd.h
+++ b/authfd.h
@@ -75,7 +75,6 @@
 int	 ssh_get_num_identities(AuthenticationConnection *, int);
 Key	*ssh_get_first_identity(AuthenticationConnection *, char **, int);
 Key	*ssh_get_next_identity(AuthenticationConnection *, char **, int);
-int	 ssh_add_identity(AuthenticationConnection *, Key *, const char *);
 int	 ssh_add_identity_constrained(AuthenticationConnection *, Key *,
     const char *, u_int, u_int);
 int	 ssh_remove_identity(AuthenticationConnection *, Key *);
Index: b/ssh-add.c
===================================================================
--- a/ssh-add.c
+++ b/ssh-add.c
@@ -203,9 +203,6 @@
 		if (confirm != 0)
 			fprintf(stderr,
 			    "The user has to confirm each use of the key\n");
-	} else if (ssh_add_identity(ac, private, comment)) {
-		fprintf(stderr, "Identity added: %s (%s)\n", filename, comment);
-		ret = 0;
 	} else {
 		fprintf(stderr, "Could not add identity: %s\n", filename);
 	}