X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Ftincd.c;h=04ff4d0bb3042147e6007d38ff0b4d53b8412877;hp=f9cd82ffee8c08716e6feeeda3b4b1a96a241672;hb=43923d2b106bfbe9300cc8e364cf098444cd649e;hpb=5dc4ade0b9c127a3c144d9c59894bf13527fe060 diff --git a/src/tincd.c b/src/tincd.c index f9cd82ff..04ff4d0b 100644 --- a/src/tincd.c +++ b/src/tincd.c @@ -17,7 +17,7 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: tincd.c,v 1.10.4.49 2001/07/04 08:43:32 guus Exp $ + $Id: tincd.c,v 1.10.4.51 2001/07/24 20:04:22 guus Exp $ */ #include "config.h" @@ -212,7 +212,7 @@ int keygen(int bits) if(!rsa_key) { - fprintf(stderr, _("Error during key generation!")); + fprintf(stderr, _("Error during key generation!\n")); return -1; } else @@ -221,7 +221,7 @@ int keygen(int bits) if(config && (cfg = get_config_val(config, config_name))) asprintf(&filename, "%s/hosts/%s", confbase, cfg->data.ptr); else - asprintf(&filename, "%s/rsa_key.priv", confbase); + asprintf(&filename, "%s/rsa_key.pub", confbase); if((f = ask_and_safe_open(filename, _("public RSA key"), "a")) == NULL) return -1;