~ubuntu-branches/ubuntu/utopic/xfsprogs/utopic-proposed

« back to all changes in this revision

Viewing changes to quota/quota.c

  • Committer: Bazaar Package Importer
  • Author(s): Nathan Scott
  • Date: 2009-05-06 11:29:18 UTC
  • mfrom: (8.1.1 jaunty)
  • Revision ID: james.westby@ubuntu.com-20090506112918-uzoyzcp90rtr8td7
Tags: 3.0.2
New bugfix release

Show diffs side-by-side

added added

removed removed

Lines of Context:
231
231
                        id = u->pw_uid;
232
232
                        name = u->pw_name;
233
233
                } else {
 
234
                        exitcode = 1;
234
235
                        fprintf(stderr, _("%s: cannot find user %s\n"),
235
236
                                progname, name);
236
237
                        return;
280
281
                                gid = g->gr_gid;
281
282
                                name = g->gr_name;
282
283
                        } else {
 
284
                                exitcode = 1;
283
285
                                fprintf(stderr, _("%s: cannot find group %s\n"),
284
286
                                        progname, name);
285
287
                                return;
336
338
        prid_t          id;
337
339
 
338
340
        if (!name) {
 
341
                exitcode = 1;
339
342
                fprintf(stderr, _("%s: must specify a project name/ID\n"),
340
343
                        progname);
341
344
                return;
348
351
                id = p->pr_prid;
349
352
                name = p->pr_name;
350
353
        } else {
 
354
                exitcode = 1;
351
355
                fprintf(stderr, _("%s: cannot find project %s\n"),
352
356
                        progname, name);
353
357
                return;