From 0122a831782eba92f981545d6bcd32bd7f89fb3a Mon Sep 17 00:00:00 2001 From: Tomas M Date: Fri, 21 Sep 2012 08:10:10 -0500 Subject: [PATCH] typo fix --- livekitlib | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/livekitlib b/livekitlib index 48d1acd..9514f92 100644 --- a/livekitlib +++ b/livekitlib @@ -218,7 +218,7 @@ device_bestfs() PEEK="$(dd if="$1" bs=1k count=1 2>/dev/null | strings)" if [ "$(echo "$PEEK" | egrep -i "FAT[13][26]")" != "" ]; then echo "-t vfat" - else if [ "$(echo "$PEEK" | egrep -i 'NTFS')" != "" ]; then + elif [ "$(echo "$PEEK" | egrep -i 'NTFS')" != "" ]; then echo "-t ntfs-3g" fi }