Home | History | Annotate | Download | only in dropbear

Lines Matching refs:comment

61 static int sshcom_encrypted(const char *filename, char **comment);
1049 char comment[256]; /* allowing any length is overkill */
1066 ret->comment[0] = '\0';
1112 if (!strcmp(buffer, "Comment")) {
1113 /* Strip quotes in comment if present. */
1118 strncpy(ret->comment, p, sizeof(ret->comment));
1119 ret->comment[sizeof(ret->comment)-1] = '\0';
1173 int sshcom_encrypted(const char *filename, char **comment)
1178 *comment = NULL;
1205 *comment = dupstr(key->comment);
1469 retkey->comment = dupstr(key->comment);
1656 fprintf(fp, "Comment: \"");
1658 * Comment header is broken with backslash-newline if it goes
1664 int slen = 60; /* starts at 60 due to "Comment: " */
1665 char *c = key->comment;