Import patch iproute2-compile-fixes-1.diff

(Logical change 1.93)
diff --git a/ip/ipxfrm.c b/ip/ipxfrm.c
index b6228c9..4df3fb9 100644
--- a/ip/ipxfrm.c
+++ b/ip/ipxfrm.c
@@ -280,7 +280,7 @@
 		t = (long)time;
 		tp = localtime(&t);
 
-		strftime(str, sizeof(str), "%F %T", tp);
+		strftime(str, sizeof(str), "%Y-%m-%d %T", tp);
 	}
 
 	return str;
@@ -410,7 +410,7 @@
 	}
 
 	if (sel->ifindex > 0) {
-		char buf[IF_NAMESIZE];
+		char buf[IFNAMSIZ];
 
 		memset(buf, '\0', sizeof(buf));
 		if_indextoname(sel->ifindex, buf);