]> git.meshlink.io Git - meshlink/blobdiff - src/protocol_misc.c
Dejavu: Use snprintf() instead of xasprintf() when generating filenames
[meshlink] / src / protocol_misc.c
index 7617091e5eac3711c505e2d84ce0d150ca0b3966..caaa08f11d0beb61a557c7e6e307e03e040294d6 100644 (file)
@@ -1,7 +1,6 @@
 /*
     protocol_misc.c -- handle the meta-protocol, miscellaneous functions
-    Copyright (C) 1999-2005 Ivo Timmermans,
-                  2000-2012 Guus Sliepen <guus@tinc-vpn.org>
+    Copyright (C) 2014 Guus Sliepen <guus@meshlink.io>
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -89,7 +88,7 @@ bool termreq_h(connection_t *c, const char *request) {
 
 bool send_ping(connection_t *c) {
        c->status.pinged = true;
-       c->last_ping_time = time(NULL);
+       c->last_ping_time = now.tv_sec;
 
        return send_request(c, "%d", PING);
 }