summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Guenthe <guenther@cvs.openbsd.org>2010-01-10 03:58:15 +0000
committerPhilip Guenthe <guenther@cvs.openbsd.org>2010-01-10 03:58:15 +0000
commite812c182ab0080ae9cebdd2d17ab4e0d3ab20f30 (patch)
tree9dde8e73a9abf5a77ce0fc6f201029390a9a0fb5
parent753151beea3ae4020fc2f3da249dcc375161ed81 (diff)
s/setpriority/setifpriority/ to eliminate a conflict with setpriority()
To quote henning, 'ok gcc'
-rw-r--r--sbin/ifconfig/ifconfig.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/ifconfig/ifconfig.c b/sbin/ifconfig/ifconfig.c
index 4750dbf3162..84290806f70 100644
--- a/sbin/ifconfig/ifconfig.c
+++ b/sbin/ifconfig/ifconfig.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ifconfig.c,v 1.227 2009/12/22 17:48:49 deraadt Exp $ */
+/* $OpenBSD: ifconfig.c,v 1.228 2010/01/10 03:58:14 guenther Exp $ */
/* $NetBSD: ifconfig.c,v 1.40 1997/10/01 02:19:43 enami Exp $ */
/*
@@ -237,7 +237,7 @@ void settrunkport(const char *, int);
void unsettrunkport(const char *, int);
void settrunkproto(const char *, int);
void trunk_status(void);
-void setpriority(const char *, int);
+void setifpriority(const char *, int);
void setinstance(const char *, int);
int main(int, char *[]);
int prefix(void *val, int);
@@ -325,7 +325,7 @@ const struct cmd {
{ "broadcast", NEXTARG, 0, setifbroadaddr },
{ "ipdst", NEXTARG, 0, setifipdst },
{ "prefixlen", NEXTARG, 0, setifprefixlen},
- { "priority", NEXTARG, 0, setpriority },
+ { "priority", NEXTARG, 0, setifpriority },
{ "vlan", NEXTARG, 0, setvlantag },
{ "vlanprio", NEXTARG, 0, setvlanprio },
{ "vlandev", NEXTARG, 0, setvlandev },
@@ -4395,7 +4395,7 @@ trunk_status(void)
#endif /* SMALL */
void
-setpriority(const char *id, int param)
+setifpriority(const char *id, int param)
{
#ifndef SMALL
const char *errmsg = NULL;