summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Troan <ewt@redhat.com>2001-12-10 21:44:38 +0000
committerErik Troan <ewt@redhat.com>2001-12-10 21:44:38 +0000
commit055464323d19bb203589efc869312937e9edc742 (patch)
tree559c51f12f770de93a1f24679a3d11aa4b8da74c
parentbc0b541ce16435981c66707170e03a772f7c78f8 (diff)
downloadanaconda-055464323d19bb203589efc869312937e9edc742.tar.gz
anaconda-055464323d19bb203589efc869312937e9edc742.tar.xz
anaconda-055464323d19bb203589efc869312937e9edc742.zip
don't print junk
-rw-r--r--loader/modules.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader/modules.c b/loader/modules.c
index 232bbd057..d7ba1fb48 100644
--- a/loader/modules.c
+++ b/loader/modules.c
@@ -496,7 +496,7 @@ static int doLoadModules(const char * origModNames, moduleList modLoaded,
(argModule && !strcmp(argModule, *l)) ? args : NULL,
modInfo, flags)) {
logMessage("failed to insert %s", *p);
- } else {
+ } else if (*p) {
logMessage("inserted %s", *p);
}
}