X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fgenauth.c;h=895ed7bc64969e0d67c9a3baaed7902347f81fee;hp=23f9770ae9e74b92ef00147b34ee4cead54c659b;hb=9c2ac77594d83a810c53faf6979e0b76006ecd0e;hpb=c9246896901ff1ebad91ac399a4ea79fad941f75 diff --git a/src/genauth.c b/src/genauth.c index 23f9770a..895ed7bc 100644 --- a/src/genauth.c +++ b/src/genauth.c @@ -72,11 +72,22 @@ int main(int argc, char **argv) } fclose(fp); - printf("%d ", bits); - for(i = 0; i < bytes; i++) - printf("%02x", p[i]); - puts(""); - fprintf(stderr, ": done.\n"); + if(isatty(1)) + { + fprintf(stderr, ": done.\nThe following line should be ENTIRELY copied into a passphrase file:\n"); + printf("%d ", bits); + for(i = 0; i < bytes; i++) + printf("%02x", p[i]); + puts(""); + } + else + { + printf("%d ", bits); + for(i = 0; i < bytes; i++) + printf("%02x", p[i]); + puts(""); + fprintf(stderr, ": done.\n"); + } return 0; }