summaryrefslogtreecommitdiffstats
path: root/loader2/method.c
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2003-05-01 20:05:36 +0000
committerMike Fulbright <msf@redhat.com>2003-05-01 20:05:36 +0000
commit1bb315fbdb2228ca281714398b8dfde52a356953 (patch)
treed3b0838e4781330a0435e586302734ba5ebdad99 /loader2/method.c
parentf41839f15346dd983982c2f101e87d9a9d6c3c09 (diff)
downloadanaconda-1bb315fbdb2228ca281714398b8dfde52a356953.tar.gz
anaconda-1bb315fbdb2228ca281714398b8dfde52a356953.tar.xz
anaconda-1bb315fbdb2228ca281714398b8dfde52a356953.zip
rest of remount tweaks
Diffstat (limited to 'loader2/method.c')
-rw-r--r--loader2/method.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/loader2/method.c b/loader2/method.c
index 130d920ca..49639fa4b 100644
--- a/loader2/method.c
+++ b/loader2/method.c
@@ -120,11 +120,11 @@ int mountLoopback(char * fsystem, char * mntpoint, char * device) {
close(loopfd);
if (doPwMount(filename, mntpoint, "iso9660", 1,
- 0, NULL, NULL, 0)) {
+ 0, NULL, NULL, 0, 0)) {
if (doPwMount(filename, mntpoint, "ext2", 1,
- 0, NULL, NULL, 0)) {
+ 0, NULL, NULL, 0, 0)) {
if (doPwMount(filename, mntpoint, "cramfs", 1,
- 0, NULL, NULL, 0)) {
+ 0, NULL, NULL, 0, 0)) {
logMessage("failed to mount loop: %s",
strerror(errno));
ioctl(loopfd, LOOP_CLR_FD, 0);
@@ -199,7 +199,7 @@ int readStampFileFromIso(char *file, char **timestamp, char **releasedescr) {
if (S_ISBLK(sb.st_mode)) {
filetype = 1;
if (doPwMount(file, "/tmp/testmnt",
- "iso9660", 1, 0, NULL, NULL, 0)) {
+ "iso9660", 1, 0, NULL, NULL, 0, 0)) {
logMessage("Failed to mount device %s to get description", file);
return -1;
}