From 43923d2b106bfbe9300cc8e364cf098444cd649e Mon Sep 17 00:00:00 2001 From: Guus Sliepen Date: Tue, 24 Jul 2001 20:04:22 +0000 Subject: [PATCH] Write public key to rsa_key.pub instead of rsa_key.priv (if not host configuration file is found). --- src/tincd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tincd.c b/src/tincd.c index 75788d6f..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.50 2001/07/20 13:54:19 guus Exp $ + $Id: tincd.c,v 1.10.4.51 2001/07/24 20:04:22 guus Exp $ */ #include "config.h" @@ -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; -- 2.20.1