From: Guus Sliepen <guus@tinc-vpn.org>
Date: Sun, 14 May 2000 13:06:52 +0000 (+0000)
Subject: Fixed typos.
X-Git-Tag: release-1.0pre2~66
X-Git-Url: http://git.tinc-vpn.org/git/browse?a=commitdiff_plain;h=9d023b1f2e7750f4a0e506c0f61498a44c0b95a8;p=tinc

Fixed typos.
---

diff --git a/src/net.c b/src/net.c
index b6007b48..6de95b5f 100644
--- a/src/net.c
+++ b/src/net.c
@@ -851,21 +851,22 @@ cp
       if(p->status.active && p->status.meta)
 	{
           if(p->last_ping_time + timeout < now)
-            if(p->status.pinged && !p->status.got_pong)
-              {
-	        syslog(LOG_INFO, "%s (" IP_ADDR_S ") didn't respond to ping",
-		       p->hostname, IP_ADDR_V(p->vpn_ip));
-	        p->status.timeout = 1;
-	        terminate_connection(p);
-              }
-            else if(p->want_ping)
-              {
-                send_ping(p);
-                p->last_ping_time = now;
-                p->status.pinged = 1;
-                p->status.get_pong = 0;
-              }
-          }
+            {
+              if(p->status.pinged && !p->status.got_pong)
+                {
+	          syslog(LOG_INFO, "%s (" IP_ADDR_S ") didn't respond to ping",
+		         p->hostname, IP_ADDR_V(p->vpn_ip));
+	          p->status.timeout = 1;
+	          terminate_connection(p);
+                }
+              else if(p->want_ping)
+                {
+                  send_ping(p);
+                  p->last_ping_time = now;
+                  p->status.pinged = 1;
+                  p->status.got_pong = 0;
+                }
+            }
 	}
     }
 cp