summaryrefslogtreecommitdiff
path: root/radsecproxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'radsecproxy.c')
-rw-r--r--radsecproxy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/radsecproxy.c b/radsecproxy.c
index f5237a1..faaac55 100644
--- a/radsecproxy.c
+++ b/radsecproxy.c
@@ -285,7 +285,6 @@ void tlsconnect(struct server *server, struct timeval *when, char *text) {
printf("tlsconnect: trying to open TLS connection to %s port %s\n", server->host, server->port);
gettimeofday(&now, NULL);
elapsed = now.tv_sec - server->lastconnecttry.tv_sec;
- memcpy(&server->lastconnecttry, &now, sizeof(struct timeval));
if (server->connectionok) {
server->connectionok = 0;
sleep(10);
@@ -308,6 +307,7 @@ void tlsconnect(struct server *server, struct timeval *when, char *text) {
err("tlsconnect: TLS: %s", ERR_error_string(error, NULL));
}
printf("tlsconnect: TLS connection to %s port %s up\n", server->host, server->port);
+ gettimeofday(&server->lastconnecttry, NULL);
pthread_mutex_unlock(&server->lock);
}