diff options
author | jkh <jkh@FreeBSD.org> | 1998-12-25 21:57:06 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-12-25 21:57:06 +0000 |
commit | 42dcfedac88e74ed779712bfbb6aadea2db2f52a (patch) | |
tree | 7037dbf4f90d0a6a7a657398f2a4d1ecaeb32124 /usr.sbin/sade | |
parent | 1cee4d444d2365f17eceef682b07f4529a88f331 (diff) | |
download | FreeBSD-src-42dcfedac88e74ed779712bfbb6aadea2db2f52a.zip FreeBSD-src-42dcfedac88e74ed779712bfbb6aadea2db2f52a.tar.gz |
Remove previous cast again - it triggers a compiler bug on the Alpha
which prevents sysinstall from building. We'll just have to live with
the warning on the x86. :(
Diffstat (limited to 'usr.sbin/sade')
-rw-r--r-- | usr.sbin/sade/menus.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/sade/menus.c b/usr.sbin/sade/menus.c index 3335c97..7689394 100644 --- a/usr.sbin/sade/menus.c +++ b/usr.sbin/sade/menus.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: menus.c,v 1.176 1998/12/09 02:46:19 jkh Exp $ + * $Id: menus.c,v 1.177 1998/12/22 12:31:25 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -1212,7 +1212,7 @@ DMenu MenuNetworking = { { "Gateway", "This machine will route packets between interfaces", dmenuVarCheck, dmenuToggleVariable, NULL, "gateway_enable=YES" }, { "Ntpdate", "Select a clock-synchronization server", - dmenuVarCheck, dmenuSubmenu, NULL, &MenuNTP, '[', 'X', ']', (int)"ntpdate_enable=YES" }, + dmenuVarCheck, dmenuSubmenu, NULL, &MenuNTP, '[', 'X', ']', "ntpdate_enable=YES" }, { "router", "Select routing daemon (default: routed)", dmenuVarCheck, configRouter, NULL, "router" }, { "Rwhod", "This machine wants to run the rwho daemon", |