Write public key to rsa_key.pub instead of rsa_key.priv (if not host
[tinc] / src / tincd.c
index b9a9572..04ff4d0 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
     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.48 2001/07/04 08:41:36 guus Exp $
+    $Id: tincd.c,v 1.10.4.51 2001/07/24 20:04:22 guus Exp $
 */
 
 #include "config.h"
 */
 
 #include "config.h"
@@ -212,7 +212,7 @@ int keygen(int bits)
 
   if(!rsa_key)
     {
 
   if(!rsa_key)
     {
-      fprintf(stderr, _("Error during key generation!"));
+      fprintf(stderr, _("Error during key generation!\n"));
       return -1;
      }
   else
       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
   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;
 
   if((f = ask_and_safe_open(filename, _("public RSA key"), "a")) == NULL)
     return -1;
@@ -336,9 +336,6 @@ cp
   if(detach())
     exit(0);
 cp
   if(detach())
     exit(0);
 cp
-  if(debug_lvl >= DEBUG_ERROR)
-    ERR_load_crypto_strings();
-    
   for(;;)
     {
       if(!setup_network_connections())
   for(;;)
     {
       if(!setup_network_connections())