summaryrefslogtreecommitdiffstats
path: root/loader2/telnetd.c
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-11-22 00:12:14 +0000
committerJeremy Katz <katzj@redhat.com>2003-11-22 00:12:14 +0000
commit91e7edf0bfe395d7a39e18a4bac56a98f9f59266 (patch)
treed4b16e3f496f5f094c3f426e5f58899f70166fe8 /loader2/telnetd.c
parent2eb8babb2d31a6ca7716a9108aeed29ed06f2b63 (diff)
downloadanaconda-91e7edf0bfe395d7a39e18a4bac56a98f9f59266.tar.gz
anaconda-91e7edf0bfe395d7a39e18a4bac56a98f9f59266.tar.xz
anaconda-91e7edf0bfe395d7a39e18a4bac56a98f9f59266.zip
switch to using kudzu's probeDevices() instead of the isys knownDevices
list everywhere. stop passing around kd. link with libpci_loader (built with diet) on diet arches to avoid dirent incompatibilities
Diffstat (limited to 'loader2/telnetd.c')
-rw-r--r--loader2/telnetd.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/loader2/telnetd.c b/loader2/telnetd.c
index c2f28d923..208a15c3f 100644
--- a/loader2/telnetd.c
+++ b/loader2/telnetd.c
@@ -38,8 +38,6 @@
#include "telnet.h"
#include "windows.h"
-#include "../isys/probe.h"
-
#ifndef IPPORT_TELNET
#define IPPORT_TELNET 23
#endif
@@ -220,12 +218,12 @@ int beTelnet(int flags) {
return 0;
}
-void startTelnetd(struct knownDevices * kd, struct loaderData_s * loaderData,
+void startTelnetd(struct loaderData_s * loaderData,
moduleInfoSet modInfo, moduleList modLoaded,
moduleDeps modDeps, int flags) {
struct networkDeviceConfig netCfg;
- if (kickstartNetworkUp(kd, loaderData, &netCfg, flags)) {
+ if (kickstartNetworkUp(loaderData, &netCfg, flags)) {
logMessage("unable to bring up network");
return;
}