~ubuntu-branches/debian/stretch/btrfs-tools/stretch

« back to all changes in this revision

Viewing changes to cmds-qgroup.c

  • Committer: Package Import Robot
  • Author(s): Dimitri John Ledkov
  • Date: 2014-04-19 12:12:11 UTC
  • mfrom: (1.2.12) (6.1.37 sid)
  • Revision ID: package-import@ubuntu.com-20140419121211-mski0g757tsdv4x1
Tags: 3.14.1-1
* New upstream release.
* Switch to git-dpm.
* Rebase and cleanup patches.

Show diffs side-by-side

added added

removed removed

Lines of Context:
99
99
        e = errno;
100
100
        close_file_or_dir(fd, dirstream);
101
101
        if (ret < 0) {
102
 
                fprintf(stderr, "ERROR: unable to create quota group: %s\n",
103
 
                        strerror(e));
 
102
                fprintf(stderr, "ERROR: unable to %s quota group: %s\n",
 
103
                        create ? "create":"destroy", strerror(e));
104
104
                return 1;
105
105
        }
106
106
        return 0;