Lines Matching defs:comment
111 delete_one(int agent_fd, const struct sshkey *key, const char *comment,
123 sshkey_type(key), comment ? comment : "no comment");
168 char *certpath = NULL, *comment = NULL;
174 if ((r = sshkey_load_public(filename, &public, &comment)) != 0) {
181 if (delete_one(agent_fd, public, comment, filename, qflag) == 0)
189 free(comment);
190 comment = NULL;
192 if ((r = sshkey_load_public(certpath, &cert, &comment)) != 0) {
202 if (delete_one(agent_fd, cert, comment, certpath, qflag) == 0)
209 free(comment);
245 char *comment = NULL;
282 &comment)) != 0 && r != SSH_ERR_KEY_WRONG_PASSPHRASE) {
290 &comment)) != 0 && r != SSH_ERR_KEY_WRONG_PASSPHRASE) {
306 &private, &comment)) == 0)
323 if (comment == NULL || *comment == '\0')
324 comment = xstrdup(filename);
330 filename, comment);
371 (r = ssh_add_identity_constrained(agent_fd, private, comment,
377 filename, comment);
425 if ((r = ssh_add_identity_constrained(agent_fd, private, comment,
448 free(comment);