summaryrefslogtreecommitdiffstats
path: root/loader2/net.h
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-06-13 14:09:54 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-06-13 14:09:54 +0000
commitb33fabcda7902c8154953f85acb274d7e0548415 (patch)
tree58eac2532e582338023907aea19a2ffce7684792 /loader2/net.h
parentf4786f81cd0e7c1e3f9162d595218cb121d2f68d (diff)
downloadanaconda-b33fabcda7902c8154953f85acb274d7e0548415.tar.gz
anaconda-b33fabcda7902c8154953f85acb274d7e0548415.tar.xz
anaconda-b33fabcda7902c8154953f85acb274d7e0548415.zip
* loader2/loader.c: parseCmdLineFlags() does not need to return flags.
We don't need to set netDev.useipv6 anymore because flags are global. * loader2/net.h: Removed useipv6 from networkDeviceConfig struct. * loader2/net.c (waitForLink): Note which interface we are waiting on. * loader2/net.c (readNetConfig): Initialize newCfg (#194882). * loader2/net.c (doDhcp): Read global flags rather than useipv6.
Diffstat (limited to 'loader2/net.h')
-rw-r--r--loader2/net.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader2/net.h b/loader2/net.h
index 5874fca8d..6d60e655d 100644
--- a/loader2/net.h
+++ b/loader2/net.h
@@ -14,14 +14,14 @@ struct networkDeviceConfig {
struct pumpNetIntf dev;
/* wireless settings */
- char * essid; /* side effect: if this is non-NULL, then assume wireless */
+ /* side effect: if this is non-NULL, then assume wireless */
+ char * essid;
char * wepkey;
/* misc settings */
int isDynamic;
int noDns;
int preset;
- int useipv6;
/* s390 settings */
int mtu;