Revert "Fix mkfs.ext* arguments"
authorDavid Zeuthen <davidz@redhat.com>
Fri, 26 Aug 2011 17:09:41 +0000 (13:09 -0400)
committerDavid Zeuthen <davidz@redhat.com>
Fri, 26 Aug 2011 17:09:41 +0000 (13:09 -0400)
This reverts commit bb813b444e95a987c4f1ceaff244e97e485598a4.

src/helpers/job-mkfs.c

index 52db903..e363484 100644 (file)
@@ -136,9 +136,9 @@ main (int argc,
 
       s = g_string_new ("mkfs.");
       g_string_append (s, fstype);
-      g_string_append (s, " -F ");
       for (n = 0; options[n] != NULL; n++)
         {
+          g_string_append (s, " -F ");
           if (g_str_has_prefix (options[n], "label="))
             {
               label = strdup (options[n] + sizeof("label=") - 1);