summaryrefslogtreecommitdiffstats
path: root/isys/imount.c
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-08-04 20:43:51 +0000
committerChris Lumens <clumens@redhat.com>2006-08-04 20:43:51 +0000
commit485d7495a50468b8cc9e3fcde6149db5a80f3cfd (patch)
tree5422e292128950683d00ca12f0c347609458263e /isys/imount.c
parentc762d766efa20329c5b2a542f0082f3d685be1e2 (diff)
downloadanaconda-485d7495a50468b8cc9e3fcde6149db5a80f3cfd.tar.gz
anaconda-485d7495a50468b8cc9e3fcde6149db5a80f3cfd.tar.xz
anaconda-485d7495a50468b8cc9e3fcde6149db5a80f3cfd.zip
Don't initialize method to a valid selection, since that causes the method
selection screen to never appear. This may re-break 201108, but this stuff is too tricky to debug without new CDs. Let's see what happens next time.
Diffstat (limited to 'isys/imount.c')
-rw-r--r--isys/imount.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/isys/imount.c b/isys/imount.c
index 14153890f..b835eb35c 100644
--- a/isys/imount.c
+++ b/isys/imount.c
@@ -24,7 +24,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,8 +70,8 @@ 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));