summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-08-08 14:05:23 +0000
committerChris Lumens <clumens@redhat.com>2006-08-08 14:05:23 +0000
commitbc517d138217d1dd568dfb03f9527c6dddc415d5 (patch)
tree019ae34de2cbda466e6b98e64d95c8226b65f058
parent7eb4cd15c5c7a2710b1a004ea0a5e7d901610f3e (diff)
downloadanaconda-bc517d138217d1dd568dfb03f9527c6dddc415d5.tar.gz
anaconda-bc517d138217d1dd568dfb03f9527c6dddc415d5.tar.xz
anaconda-bc517d138217d1dd568dfb03f9527c6dddc415d5.zip
Revert logMessage calls (#201707).
-rw-r--r--ChangeLog4
-rw-r--r--isys/imount.c9
2 files changed, 8 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 9df6c4998..56fef2147 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-08-08 Chris Lumens <clumens@redhat.com>
+
+ * isys/imount.c: Revert logMessage calls (#201707).
+
2006-08-07 Chris Lumens <clumens@redhat.com>
* anaconda.spec: Bump version.
diff --git a/isys/imount.c b/isys/imount.c
index b835eb35c..7da427b1a 100644
--- a/isys/imount.c
+++ b/isys/imount.c
@@ -9,7 +9,6 @@
#include "imount.h"
#include "sundries.h"
-#include "../loader2/log.h"
#define _(foo) foo
@@ -24,7 +23,7 @@ int doPwMount(char * dev, char * where, char * fs, int options, void *data) {
if (!strcmp(fs, "nfs")) isnfs = 1;
- logMessage(INFO, "mounting %s on %s as type %s", dev, where, fs);
+ /*logMessage(INFO, "mounting %s on %s as type %s", dev, where, fs);*/
if (mkdirChain(where))
return IMOUNT_ERR_ERRNO;
@@ -70,11 +69,11 @@ int doPwMount(char * dev, char * where, char * fs, int options, void *data) {
mount_opt="ufstype=sun";
#endif
- logMessage(INFO, "calling mount(%s, %s, %s, %ld, %p)", buf, where, fs,
- flag, mount_opt);
+ /*logMessage(INFO, "calling mount(%s, %s, %s, %ld, %p)", buf, where, fs,
+ flag, mount_opt);*/
if (mount(buf, where, fs, flag, mount_opt)) {
- logMessage(ERROR, "mount failed: %s", strerror(errno));
+ /*logMessage(ERROR, "mount failed: %s", strerror(errno));*/
return IMOUNT_ERR_ERRNO;
}