]> git.meshlink.io Git - meshlink/blobdiff - src/sptps_keypair.c
Remove some more traces of tinc.
[meshlink] / src / sptps_keypair.c
index 63f396a8653c364c52d506ae3550ab652ffa173c..931f1b41237cb6adf5994c5e0c2b429813bae936 100644 (file)
@@ -1,6 +1,6 @@
 /*
     sptps_test.c -- Simple Peer-to-Peer Security test program
-    Copyright (C) 2011-2013 Guus Sliepen <guus@tinc-vpn.org>,
+    Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>,
 
     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;
        }