public inbox for util-linux@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libmount: fix support of comma-separated fs types lists
@ 2012-09-27 16:18 Gleb Fotengauer-Malinovskiy
  2012-09-27 16:48 ` [PATCH v2] " Gleb Fotengauer-Malinovskiy
  0 siblings, 1 reply; 3+ messages in thread
From: Gleb Fotengauer-Malinovskiy @ 2012-09-27 16:18 UTC (permalink / raw)
  To: Karel Zak; +Cc: util-linux

	# grep cdrom /etc/fstab
	/dev/sr0 /media/cdrom udf,iso9660 ro,noauto,user,utf8 0 0
	# mount /media/cdrom
	mount: unknown filesystem type 'udf,iso9660'

	# mount -t udf,iso9660 /dev/sr0 /media/cdrom
	mount: /dev/sr0 is write-protected, mounting read-only

Signed-off-by: Gleb Fotengauer-Malinovskiy <glebfm@altlinux.org>
---
 libmount/src/context_mount.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libmount/src/context_mount.c b/libmount/src/context_mount.c
index f3d8ff1..efd7e7b 100644
--- a/libmount/src/context_mount.c
+++ b/libmount/src/context_mount.c
@@ -691,7 +691,7 @@ int mnt_context_do_mount(struct libmnt_context *cxt)
 		cxt->mountdata =3D (char *) mnt_fs_get_fs_options(cxt->fs);
=20
 	type =3D mnt_fs_get_fstype(cxt->fs);
-	if (type)
+	if (type && !strchr(type, ','))
 		res =3D do_mount(cxt, NULL);
 	else
 		res =3D do_mount_by_pattern(cxt, cxt->fstype_pattern);

--=20
	glebfm
	=E7=CC=C5=C2 =E6=CF=D4=C5=CE=C7=C1=D5=DC=D2-=ED=C1=CC=C9=CE=CF=D7=D3=CB=C9=
=CA

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-10-01 15:41 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-27 16:18 [PATCH] libmount: fix support of comma-separated fs types lists Gleb Fotengauer-Malinovskiy
2012-09-27 16:48 ` [PATCH v2] " Gleb Fotengauer-Malinovskiy
2012-10-01 15:41   ` Karel Zak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox