diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-09-26 21:49:58 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-09-26 21:49:58 +0000 |
commit | 0a0880f8b3a15f15a43753d9f9616aacaeb8c707 (patch) | |
tree | 0c719cfab0039ef6379efda0e84086c5e2996fea /loader/modules.c | |
parent | c8039c08e1700f196197b073f4744e965c2bd356 (diff) | |
download | anaconda-0a0880f8b3a15f15a43753d9f9616aacaeb8c707.tar.gz anaconda-0a0880f8b3a15f15a43753d9f9616aacaeb8c707.tar.xz anaconda-0a0880f8b3a15f15a43753d9f9616aacaeb8c707.zip |
merge fix from 7-2-branch
Diffstat (limited to 'loader/modules.c')
-rw-r--r-- | loader/modules.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/modules.c b/loader/modules.c index 25d3b77dc..1d9cfd8df 100644 --- a/loader/modules.c +++ b/loader/modules.c @@ -62,7 +62,7 @@ static int scsiCount(void) { if (!f) return 0; while (fgets(buf, sizeof(buf) - 1, f)) { - if (!strncmp(buf, "scsi_hostadaptor", 16)) + if (!strncmp(buf, "scsi_hostadapter", 16)) count++; } fclose(f); |