summaryrefslogtreecommitdiffstats
path: root/loader/net.c
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>1999-11-30 22:23:45 +0000
committerMatt Wilson <msw@redhat.com>1999-11-30 22:23:45 +0000
commitbeeb609dffdeb0414ca4658911e5dcb4dd8006a9 (patch)
treeca5f92d6c694f54af9cf48f0161571e8d5fa86c3 /loader/net.c
parentf687e3cd850fb2378252c6d2fb0c3bbac2ef3107 (diff)
downloadanaconda-beeb609dffdeb0414ca4658911e5dcb4dd8006a9.tar.gz
anaconda-beeb609dffdeb0414ca4658911e5dcb4dd8006a9.tar.xz
anaconda-beeb609dffdeb0414ca4658911e5dcb4dd8006a9.zip
o changes needed to use rpmio from rpm HEADr0-7-3
o typo in exception screen o other things that came along the way.
Diffstat (limited to 'loader/net.c')
-rw-r--r--loader/net.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/net.c b/loader/net.c
index a41f1eb1e..8c4534bb5 100644
--- a/loader/net.c
+++ b/loader/net.c
@@ -516,12 +516,12 @@ int kickstartNetwork(char * device, struct networkDeviceConfig * netDev,
ksArgc = 1;
}
- optCon = poptGetContext(NULL, ksArgc, ksArgv, ksOptions, 0);
+ optCon = poptGetContext(NULL, ksArgc, (const char **) ksArgv, ksOptions, 0);
while ((rc = poptGetNextOpt(optCon)) >= 0) {
parseAddress = NULL;
netSet = 0;
- arg = poptGetOptArg(optCon);
+ arg = (char *) poptGetOptArg(optCon);
switch (rc) {
case 'g':