]> tinc-vpn.org Git - tinc/blobdiff - src/connection.c
Replace bare if statements with AS_IF in configure.ac.
[tinc] / src / connection.c
index 9c459787eabbb5bc94a200a2dc01e3effbc1be58..0e61132c9182a637278b8fe87053962ef23481a8 100644 (file)
@@ -48,21 +48,23 @@ void exit_connections(void) {
 }
 
 connection_t *new_connection(void) {
-       return xmalloc_and_zero(sizeof(connection_t));
+       return xzalloc(sizeof(connection_t));
 }
 
 void free_connection(connection_t *c) {
        if(!c)
                return;
 
+#ifndef DISABLE_LEGACY
        cipher_close(c->incipher);
        digest_close(c->indigest);
        cipher_close(c->outcipher);
        digest_close(c->outdigest);
+       rsa_free(c->rsa);
+#endif
 
        sptps_stop(&c->sptps);
        ecdsa_free(c->ecdsa);
-       rsa_free(c->rsa);
 
        free(c->hischallenge);