Searched refs:dotsshdir (Results 1 – 1 of 1) sorted by relevance
| /freebsd-12.1/crypto/openssh/ |
| H A D | ssh-keygen.c | 2371 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2; in main() local 2775 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", in main() 2777 if (strstr(identity_file, dotsshdir) != NULL) { in main() 2778 if (stat(dotsshdir, &st) < 0) { in main() 2780 error("Could not stat %s: %s", dotsshdir, in main() 2782 } else if (mkdir(dotsshdir, 0700) < 0) { in main() 2784 dotsshdir, strerror(errno)); in main() 2786 printf("Created directory '%s'.\n", dotsshdir); in main()
|