]> git.proxmox.com Git - mirror_frr.git/blobdiff - zebra/irdp_packet.c
Merge pull request #3384 from donaldsharp/topotests
[mirror_frr.git] / zebra / irdp_packet.c
index 15235f0e409dd418be5667711ff9b7c3e964cc89..bebccd716820403b20c856e07e8f7da6ba0d75bc 100644 (file)
@@ -97,25 +97,25 @@ static void parse_irdp_packet(char *p, int len, struct interface *ifp)
 
        if (len != iplen) {
                flog_err(EC_ZEBRA_IRDP_LEN_MISMATCH,
-                         "IRDP: RX length doesnt match IP length");
+                        "IRDP: RX length doesn't match IP length");
                return;
        }
 
        if (iplen < ICMP_MINLEN) {
                flog_err(EC_ZEBRA_IRDP_LEN_MISMATCH,
-                         "IRDP: RX ICMP packet too short from %s\n",
-                         inet_ntoa(src));
+                        "IRDP: RX ICMP packet too short from %s\n",
+                        inet_ntoa(src));
                return;
        }
 
-       /* XXX: RAW doesnt receive link-layer, surely? ??? */
+       /* XXX: RAW doesn't receive link-layer, surely? ??? */
        /* Check so we don't checksum packets longer than oure RX_BUF - (ethlen
         +
         len of IP-header) 14+20 */
        if (iplen > IRDP_RX_BUF - 34) {
                flog_err(EC_ZEBRA_IRDP_LEN_MISMATCH,
-                         "IRDP: RX ICMP packet too long from %s\n",
-                         inet_ntoa(src));
+                        "IRDP: RX ICMP packet too long from %s\n",
+                        inet_ntoa(src));
                return;
        }