From 6b44ab2a50719d86ab5ebcbf62c848c1027e8a6b Mon Sep 17 00:00:00 2001 From: Curtis Gedak Date: Wed, 7 Jan 2009 21:42:05 +0000 Subject: [PATCH] Removed redundant command flag options. svn path=/trunk/; revision=1027 --- ChangeLog | 4 ++++ src/ntfs.cc | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d5cbed50..b3d3f023 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2009-01-07 Curtis Gedak + + * src/ntfs.cc: Removed redundant command flag options. + 2009-01-06 Curtis Gedak * src/GParted_Core.cc: Actually commit this file, and diff --git a/src/ntfs.cc b/src/ntfs.cc index a64aba7d..277972fc 100644 --- a/src/ntfs.cc +++ b/src/ntfs.cc @@ -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 ) {