summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Cantrell <dcantrell@redhat.com>2006-01-16 22:01:29 +0000
committerDavid Cantrell <dcantrell@redhat.com>2006-01-16 22:01:29 +0000
commit3652009eaabdf280012b87feb203471d410a54f2 (patch)
treefb18f6a5500a47cdc620b5cedeeb691835769d4c
parentbfa28e59c89c7b9a806bd27a62be11b49bc4fe0c (diff)
downloadanaconda-3652009eaabdf280012b87feb203471d410a54f2.tar.gz
anaconda-3652009eaabdf280012b87feb203471d410a54f2.tar.xz
anaconda-3652009eaabdf280012b87feb203471d410a54f2.zip
* loader2/moduleinfo.c (readModuleInfo): Correct parsing problem
for module info files on driver disks (#164549).
-rw-r--r--ChangeLog7
-rw-r--r--loader2/moduleinfo.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 8ea1e4515..d83798542 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-16 David Cantrell <dcantrell@redhat.com>
+
+ * loader2/moduleinfo.c (readModuleInfo): Correct parsing problem
+ for module info files on driver disks (#164549).
+
2005-11-29 Chris Lumens <clumens@redhat.com>
* anaconda.spec: Bump version.
@@ -19,7 +24,7 @@
2005-11-02 Peter Jones <pjones@redhat.com>
- * loader2/module-info: add bnx2
+ * loader2/module-info: add bnx2
2005-08-04 Paul Nasrat <pnasrat@redhat.com>
diff --git a/loader2/moduleinfo.c b/loader2/moduleinfo.c
index ad8d58e3b..8ac18aa30 100644
--- a/loader2/moduleinfo.c
+++ b/loader2/moduleinfo.c
@@ -116,7 +116,7 @@ int readModuleInfo(const char * filename, moduleInfoSet mis,
/* slice and dice */
next = chptr + 1;
} else {
- chptr + strlen(start) - 1;
+ chptr += strlen(start) - 1;
}
chptr--;