From 4a7791eca1268e24225c33ed1c00c140a14cd955 Mon Sep 17 00:00:00 2001 From: Thomas Graf Date: Fri, 25 Nov 2011 16:08:25 +0100 Subject: [PATCH] dsmark: Add missing declarations for rtnl_class_dsmark_(get|set)_bitmask() The existing declarations refered to non-existing functions so removing them is safe. Signed-off-by: Thomas Graf --- include/netlink/route/qdisc/dsmark.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/netlink/route/qdisc/dsmark.h b/include/netlink/route/qdisc/dsmark.h index de65496..d7a6d22 100644 --- a/include/netlink/route/qdisc/dsmark.h +++ b/include/netlink/route/qdisc/dsmark.h @@ -6,7 +6,7 @@ * License as published by the Free Software Foundation version 2.1 * of the License. * - * Copyright (c) 2003-2006 Thomas Graf + * Copyright (c) 2003-2011 Thomas Graf */ #ifndef NETLINK_DSMARK_H_ @@ -18,8 +18,8 @@ extern "C" { #endif -extern int rtnl_class_dsmark_set_bmask(struct rtnl_class *, uint8_t); -extern int rtnl_class_dsmark_get_bmask(struct rtnl_class *); +extern int rtnl_class_dsmark_set_bitmask(struct rtnl_class *, uint8_t); +extern int rtnl_class_dsmark_get_bitmask(struct rtnl_class *); extern int rtnl_class_dsmark_set_value(struct rtnl_class *, uint8_t); extern int rtnl_class_dsmark_get_value(struct rtnl_class *);