diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-11-18 21:06:37 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-11-18 21:06:37 +0000 |
commit | 24087d2a980cada74188dc6409ab2bd008767d38 (patch) | |
tree | 6a28a0c7a3d67eb90a3499f1cb021329cb30db66 /isys | |
parent | 378d0c72fb368a40b5a4631c01cfc32bdd057932 (diff) | |
download | anaconda-24087d2a980cada74188dc6409ab2bd008767d38.tar.gz anaconda-24087d2a980cada74188dc6409ab2bd008767d38.tar.xz anaconda-24087d2a980cada74188dc6409ab2bd008767d38.zip |
I love duplicating code. apply the fix I made to kudzu yesterday
isys probing must die
Diffstat (limited to 'isys')
-rw-r--r-- | isys/probe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/probe.c b/isys/probe.c index db02285ae..e89bb44ae 100644 --- a/isys/probe.c +++ b/isys/probe.c @@ -445,7 +445,7 @@ int kdFindScsiList(struct knownDevices * devices, int code) { switch (state) { case SCSISCSI_TOP: - if (strcmp("Attached devices: ", start)) { + if (strncmp("Attached devices:", start, 17)) { val = -1; goto bye; } |