~daniel-mehrmann/e2fsprogs/master

« back to all changes in this revision

Viewing changes to misc/chattr.c

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs
  • Date: 2012-06-14 13:01:21 UTC
  • mfrom: (8.4.18 sid)
  • Revision ID: package-import@ubuntu.com-20120614130121-t2gct0d09jepx0y6
Tags: 1.42.4-3ubuntu1
* Merge from Debian unstable (LP: #978012), 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

Show diffs side-by-side

added added

removed removed

Lines of Context:
83
83
static void usage(void)
84
84
{
85
85
        fprintf(stderr,
86
 
                _("Usage: %s [-RVf] [-+=AacDdeijsSu] [-v version] files...\n"),
 
86
                _("Usage: %s [-RVf] [-+=AaCcDdeijsSu] [-v version] files...\n"),
87
87
                program_name);
88
88
        exit(1);
89
89
}
107
107
        { EXT2_UNRM_FL, 'u' },
108
108
        { EXT2_NOTAIL_FL, 't' },
109
109
        { EXT2_TOPDIR_FL, 'T' },
 
110
        { FS_NOCOW_FL, 'C' },
110
111
        { 0, 0 }
111
112
};
112
113