=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/ssh-add.c,v retrieving revision 1.47 retrieving revision 1.48 diff -u -r1.47 -r1.48 --- src/usr.bin/ssh/ssh-add.c 2001/12/19 07:18:56 1.47 +++ src/usr.bin/ssh/ssh-add.c 2001/12/21 10:06:43 1.48 @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-add.c,v 1.47 2001/12/19 07:18:56 deraadt Exp $"); +RCSID("$OpenBSD: ssh-add.c,v 1.48 2001/12/21 10:06:43 djm Exp $"); #include @@ -52,6 +52,15 @@ /* argv0 */ extern char *__progname; +/* Default files to add */ +static char *default_files[] = { + _PATH_SSH_CLIENT_ID_RSA, + _PATH_SSH_CLIENT_ID_DSA, + _PATH_SSH_CLIENT_IDENTITY, + NULL +}; + + /* we keep a cache of one passphrases */ static char *pass = NULL; static void @@ -204,6 +213,19 @@ printf("The agent has no identities.\n"); } +static int +do_file(AuthenticationConnection *ac, int deleting, char *file) +{ + if (deleting) { + if (delete_file(ac, file) == -1) + return -1; + } else { + if (add_file(ac, file) == -1) + return -1; + } + return 0; +} + static void usage(void) { @@ -225,8 +247,6 @@ extern char *optarg; extern int optind; AuthenticationConnection *ac = NULL; - struct passwd *pw; - char buf[1024]; char *sc_reader_id = NULL; int i, ch, deleting = 0, ret = 0; @@ -274,30 +294,26 @@ goto done; } if (argc == 0) { - pw = getpwuid(getuid()); - if (!pw) { + char buf[MAXPATHLEN]; + struct passwd *pw; + + if ((pw = getpwuid(getuid())) == NULL) { fprintf(stderr, "No user found with uid %u\n", (u_int)getuid()); ret = 1; goto done; } - snprintf(buf, sizeof buf, "%s/%s", pw->pw_dir, _PATH_SSH_CLIENT_IDENTITY); - if (deleting) { - if (delete_file(ac, buf) == -1) + + for(i = 0; default_files[i]; i++) { + snprintf(buf, sizeof(buf), "%s/%s", pw->pw_dir, + default_files[i]); + if (do_file(ac, deleting, buf) == -1) ret = 1; - } else { - if (add_file(ac, buf) == -1) - ret = 1; } } else { - for (i = 0; i < argc; i++) { - if (deleting) { - if (delete_file(ac, argv[i]) == -1) - ret = 1; - } else { - if (add_file(ac, argv[i]) == -1) - ret = 1; - } + for(i = 0; i < argc; i++) { + if (do_file(ac, deleting, argv[1]) == -1) + ret = 1; } } clear_pass();