Searched refs:dotsshdir (Results 1 – 1 of 1) sorted by relevance
/external/openssh/ |
D | ssh-keygen.c | 2261 char dotsshdir[PATH_MAX], comment[1024], *passphrase1, *passphrase2; in main() local 2659 snprintf(dotsshdir, sizeof dotsshdir, "%s/%s", in main() 2661 if (strstr(identity_file, dotsshdir) != NULL) { in main() 2662 if (stat(dotsshdir, &st) < 0) { in main() 2664 error("Could not stat %s: %s", dotsshdir, in main() 2666 } else if (mkdir(dotsshdir, 0700) < 0) { in main() 2668 dotsshdir, strerror(errno)); in main() 2670 printf("Created directory '%s'.\n", dotsshdir); in main()
|