summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorreyk <reyk@openbsd.org>2006-02-09 13:33:38 +0000
committerreyk <reyk@openbsd.org>2006-02-09 13:33:38 +0000
commit650f46cf7d754f88c039c62c1912e29e6301da14 (patch)
treefb08974e56af6f2b9a2e2397c9715ab4d81da69d
parentadd missing client-side paths definitions; (diff)
downloadwireguard-openbsd-650f46cf7d754f88c039c62c1912e29e6301da14.tar.xz
wireguard-openbsd-650f46cf7d754f88c039c62c1912e29e6301da14.zip
remove trailing ',' in enum declaration
-rw-r--r--sys/net/if_trunk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if_trunk.h b/sys/net/if_trunk.h
index 9a4c11daedd..7d1ace8aca1 100644
--- a/sys/net/if_trunk.h
+++ b/sys/net/if_trunk.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_trunk.h,v 1.6 2005/12/18 17:59:59 reyk Exp $ */
+/* $OpenBSD: if_trunk.h,v 1.7 2006/02/09 13:33:38 reyk Exp $ */
/*
* Copyright (c) 2005 Reyk Floeter <reyk@openbsd.org>
@@ -40,7 +40,7 @@ enum trunk_proto {
TRUNK_PROTO_NONE = 0, /* no trunk protocol defined */
TRUNK_PROTO_ROUNDROBIN = 1, /* simple round robin */
TRUNK_PROTO_FAILOVER = 2, /* active failover */
- TRUNK_PROTO_MAX = 3,
+ TRUNK_PROTO_MAX = 3
};
struct trunk_protos {