]> git.meshlink.io Git - meshlink/commitdiff
If we have this functions static we cannot reuse them in other library files
authorSaverio Proto <zioproto@gmail.com>
Wed, 2 Apr 2014 12:08:42 +0000 (14:08 +0200)
committerSaverio Proto <zioproto@gmail.com>
Wed, 2 Apr 2014 12:08:42 +0000 (14:08 +0200)
src/tincctl.c

index 81e7a7a2cbdbcbd4f94835769379b22a37556413..c28c20ec8599fa4532ed3fb219ab92925c2fad31 100644 (file)
@@ -358,7 +358,7 @@ static FILE *ask_and_open(const char *filename, const char *what, const char *mo
   Generate a public/private ECDSA keypair, and ask for a file to store
   them in.
 */
-static bool ecdsa_keygen(bool ask) {
+bool ecdsa_keygen(bool ask) {
        ecdsa_t *key;
        FILE *f;
        char *pubname, *privname;
@@ -412,7 +412,7 @@ static bool ecdsa_keygen(bool ask) {
   Generate a public/private RSA keypair, and ask for a file to store
   them in.
 */
-static bool rsa_keygen(int bits, bool ask) {
+bool rsa_keygen(int bits, bool ask) {
        rsa_t *key;
        FILE *f;
        char *pubname, *privname;