From 4c9193f07c32c91d40c8793f48723bd9e9253d33 Mon Sep 17 00:00:00 2001 From: IgnorantGuru Date: Sat, 30 Jun 2012 00:42:21 -0600 Subject: [PATCH] extend invalid block device fstypes --- src/udevil.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/udevil.c b/src/udevil.c index 1542b42..c868bc6 100644 --- a/src/udevil.c +++ b/src/udevil.c @@ -2854,9 +2854,15 @@ _get_type: { // user specified fstype if ( !strcmp( data->fstype, "nfs" ) || !strcmp( data->fstype, "smbfs" ) - || !strcmp( data->fstype, "file" ) ) + || !strcmp( data->fstype, "cifs" ) + || !strcmp( data->fstype, "ftpfs" ) + || !strcmp( data->fstype, "curlftpfs" ) + || !strcmp( data->fstype, "sshfs" ) + || !strcmp( data->fstype, "tmpfs" ) + || !strcmp( data->fstype, "ramfs" ) + || !strcmp( data->fstype, "file" ) ) { - wlog( "udevil: error: invalid type '%s' for block device\n", + wlog( "udevil: error: type %s is invalid for block device\n", data->fstype, 2 ); ret = 1; goto _finish;