~daniel-mehrmann/e2fsprogs/master

« back to all changes in this revision

Viewing changes to lib/ext2fs/dosio.c

  • Committer: Package Import Robot
  • Author(s): Michael Vogt
  • Date: 2014-10-27 09:44:27 UTC
  • mfrom: (8.4.29 sid)
  • Revision ID: package-import@ubuntu.com-20141027094427-g56dce6sg7pasdgm
Tags: 1.42.12-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - debian/rules:
      Block pkg-create-dbgsym from operating on this package.
      Build without dietlibc-dev, which is in universe 
      Use the autotools-dev dh addon to update config.guess/config.sub for new
      ports.
  - debian/control:
      Regenerate with ./debian/rules debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
static errcode_t dos_flush(io_channel channel);
63
63
 
64
64
static struct struct_io_manager struct_dos_manager = {
65
 
        EXT2_ET_MAGIC_IO_MANAGER,
66
 
        "DOS I/O Manager",
67
 
        dos_open,
68
 
        dos_close,
69
 
        dos_set_blksize,
70
 
        dos_read_blk,
71
 
        dos_write_blk,
72
 
        dos_flush
 
65
        .magic          = EXT2_ET_MAGIC_IO_MANAGER,
 
66
        .name           = "DOS I/O Manager",
 
67
        .open           = dos_open,
 
68
        .close          = dos_close,
 
69
        .set_blksize    = dos_set_blksize,
 
70
        .read_blk       = dos_read_blk,
 
71
        .write_blk      = dos_write_blk,
 
72
        .flush          = dos_flush
73
73
};
 
74
 
74
75
io_manager dos_io_manager = &struct_dos_manager;
75
76
 
76
77
/*