X-Git-Url: http://git.meshlink.io/?a=blobdiff_plain;f=src%2Fsptps_keypair.c;h=931f1b41237cb6adf5994c5e0c2b429813bae936;hb=96daae84fef0a3f2c7fb18a39c6aa9594895dcd2;hp=63f396a8653c364c52d506ae3550ab652ffa173c;hpb=f619a7412c1aeebcdeb98cb95244a9eed5d9b537;p=meshlink diff --git a/src/sptps_keypair.c b/src/sptps_keypair.c index 63f396a8..931f1b41 100644 --- a/src/sptps_keypair.c +++ b/src/sptps_keypair.c @@ -1,6 +1,6 @@ /* sptps_test.c -- Simple Peer-to-Peer Security test program - Copyright (C) 2011-2013 Guus Sliepen , + Copyright (C) 2014 Guus Sliepen , This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -32,7 +32,7 @@ static void usage() { fprintf(stderr, "Valid options are:\n" " --help Display this help and exit.\n" "\n"); - fprintf(stderr, "Report bugs to tinc@tinc-vpn.org.\n"); + fprintf(stderr, "Report bugs to bugs@meshlink.io.\n"); } static struct option const long_options[] = { @@ -83,7 +83,7 @@ int main(int argc, char *argv[]) { ecdsa_write_pem_private_key(key, fp); fclose(fp); } else { - fprintf(stderr, "Could not open '%s' for writing: %s\n", strerror(errno)); + fprintf(stderr, "Could not open '%s' for writing: %s\n", argv[1], strerror(errno)); return 1; } @@ -92,7 +92,7 @@ int main(int argc, char *argv[]) { ecdsa_write_pem_public_key(key, fp); fclose(fp); } else { - fprintf(stderr, "Could not open '%s' for writing: %s\n", strerror(errno)); + fprintf(stderr, "Could not open '%s' for writing: %s\n", argv[2], strerror(errno)); return 1; }