Module Name: src
Committed By: pooka
Date: Mon Aug 31 12:57:45 UTC 2015
Modified Files:
src/sys/net: if_llatbl.c
Log Message:
#if __NetBSD__ -> #if defined(__NetBSD__)
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/net/if_llatbl.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/net/if_llatbl.c
diff -u src/sys/net/if_llatbl.c:1.2 src/sys/net/if_llatbl.c:1.3
--- src/sys/net/if_llatbl.c:1.2 Mon Aug 31 08:05:20 2015
+++ src/sys/net/if_llatbl.c Mon Aug 31 12:57:45 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: if_llatbl.c,v 1.2 2015/08/31 08:05:20 ozaki-r Exp $ */
+/* $NetBSD: if_llatbl.c,v 1.3 2015/08/31 12:57:45 pooka Exp $ */
/*
* Copyright (c) 2004 Luigi Rizzo, Alessandro Cerri. All rights reserved.
* Copyright (c) 2004-2008 Qing Li. All rights reserved.
@@ -373,7 +373,7 @@ lltable_free(struct lltable *llt)
LIST_FOREACH_SAFE(lle, &dchain, lle_chain, next) {
if (callout_stop(&lle->la_timer))
LLE_REMREF(lle);
-#if __NetBSD__
+#if defined(__NetBSD__)
/* XXX should have callback? */
if (lle->la_rt != NULL)
rtfree(lle->la_rt);