~ubuntu-branches/ubuntu/saucy/gparted/saucy

« back to all changes in this revision

Viewing changes to src/fat16.cc

  • Committer: Package Import Robot
  • Author(s): Anibal Monsalve Salazar
  • Date: 2011-11-13 09:45:30 UTC
  • mfrom: (6.3.18)
  • Revision ID: package-import@ubuntu.com-20111113094530-bpv6kjk4rwozc1jf
Tags: 0.10.0-1
* New upstream release

  GParted 0.10.0  (2011-11-01)

  * Merge overlapping operations
  * Add ability to resize btrfs file systems
  * Add detection of exfat file systems

  GParted 0.9.1   (2011-09-19)

  * Fix NTFS partition resize fail problem
  * Fix some compiler warnings

  GParted 0.9.0   (2011-07-18)

  * Fix size off by one sector with unrecognized disk label
  * Fix GParted crashes with assertion (head_size <= 63)
    - Requires libparted-2.4 or higher
    - LP: #545911

* Fix out-of-date-standards-version
* Fix debian-rules-missing-recommended-target

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* Copyright (C) 2004 Bart
2
 
 * Copyright (C) 2008, 2009, 2010 Curtis Gedak
 
2
 * Copyright (C) 2008, 2009, 2010, 2011 Curtis Gedak
3
3
 *
4
4
 *  This program is free software; you can redistribute it and/or modify
5
5
 *  it under the terms of the GNU General Public License as published by
49
49
                fs .write_label = FS::EXTERNAL ;
50
50
        }
51
51
 
 
52
#ifndef HAVE_LIBPARTED_3_0_0_PLUS
52
53
        //resizing of start and endpoint are provided by libparted
53
54
        fs .grow = GParted::FS::LIBPARTED ;
54
55
        fs .shrink = GParted::FS::LIBPARTED ;
55
56
        fs .move = GParted::FS::LIBPARTED ;
56
 
                
 
57
#else
 
58
        fs.move = FS::GPARTED ;
 
59
#endif
 
60
 
57
61
        fs .copy = GParted::FS::GPARTED ;
58
62
        
59
63
        fs .MIN = 16 * MEBIBYTE ;