Removed redundant command flag options.

svn path=/trunk/; revision=1027
This commit is contained in:
Curtis Gedak 2009-01-07 21:42:05 +00:00
parent a52b989903
commit 6b44ab2a50
2 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2009-01-07 Curtis Gedak <gedakc@gmail.com>
* src/ntfs.cc: Removed redundant command flag options.
2009-01-06 Curtis Gedak <gedakc@gmail.com>
* src/GParted_Core.cc: Actually commit this file, and

View file

@ -105,13 +105,13 @@ bool ntfs::write_label( const Partition & partition, OperationDetail & operation
bool ntfs::create( const Partition & new_partition, OperationDetail & operationdetail )
{
return ! execute_command( "mkntfs -Q -vv -L \"" + new_partition .label + "\" " + new_partition .get_path(), operationdetail ) ;
return ! execute_command( "mkntfs -Q -v -L \"" + new_partition .label + "\" " + new_partition .get_path(), operationdetail ) ;
}
bool ntfs::resize( const Partition & partition_new, OperationDetail & operationdetail, bool fill_partition )
{
bool return_value = false ;
Glib::ustring str_temp = "ntfsresize -P --force --force " + partition_new .get_path() ;
Glib::ustring str_temp = "ntfsresize -P --force " + partition_new .get_path() ;
if ( ! fill_partition )
{