~daniel-mehrmann/e2fsprogs/master

« back to all changes in this revision

Viewing changes to e2fsck/pass1.c

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2012-08-14 11:43:29 UTC
  • mfrom: (8.4.19 sid)
  • Revision ID: package-import@ubuntu.com-20120814114329-nbp87t8d1hqqncqh
Tags: 1.42.5-1ubuntu1
* Merge from Debian unstable, remainging changes:
  - debian/control.in: 
      Build-depend on gettext:any instead of on gettext for (cross-building)
      Drop build dependency on dc, which hasn't been needed for some time.
      Update maintainer field.
  - debian/rules:
      Block pkg-create-dbgsym from operating on this package.
      Build without dietlibc-dev, which is in universe 
  - debian/control:
      Regenerate with ./debian/rules debian/control
  - debian/patches/fix-ftbfs-undefined-symbols.patch:
      Add a patch from Sourceforge Issue 3554345, to fix linking order.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2822
2822
        }
2823
2823
}
2824
2824
 
2825
 
void e2fsck_use_inode_shortcuts(e2fsck_t ctx, int bool)
 
2825
void e2fsck_use_inode_shortcuts(e2fsck_t ctx, int use_shortcuts)
2826
2826
{
2827
2827
        ext2_filsys fs = ctx->fs;
2828
2828
 
2829
 
        if (bool) {
 
2829
        if (use_shortcuts) {
2830
2830
                fs->get_blocks = pass1_get_blocks;
2831
2831
                fs->check_directory = pass1_check_directory;
2832
2832
                fs->read_inode = pass1_read_inode;