Deleted Added
full compact
quota.c (58618) quota.c (77047)
1/*
2 * Copyright (c) 1980, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Robert Elz at The University of Melbourne.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 31 unchanged lines hidden (view full) ---

40 The Regents of the University of California. All rights reserved.\n";
41#endif /* not lint */
42
43#ifndef lint
44#if 0
45static char sccsid[] = "from: @(#)quota.c 8.1 (Berkeley) 6/6/93";
46#endif
47static const char rcsid[] =
1/*
2 * Copyright (c) 1980, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Robert Elz at The University of Melbourne.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 31 unchanged lines hidden (view full) ---

40 The Regents of the University of California. All rights reserved.\n";
41#endif /* not lint */
42
43#ifndef lint
44#if 0
45static char sccsid[] = "from: @(#)quota.c 8.1 (Berkeley) 6/6/93";
46#endif
47static const char rcsid[] =
48 "$FreeBSD: head/usr.bin/quota/quota.c 58618 2000-03-26 14:48:46Z charnier $";
48 "$FreeBSD: head/usr.bin/quota/quota.c 77047 2001-05-23 17:12:09Z pirzyk $";
49#endif /* not lint */
50
51/*
52 * Disk quota reporting program.
53 */
54#include <sys/param.h>
55#include <sys/types.h>
56#include <sys/file.h>

--- 341 unchanged lines hidden (view full) ---

398 char *name, *tag;
399{
400
401 printf("Disk quotas for %s %s (%cid %lu): %s\n", qfextension[type],
402 name, *qfextension[type], id, tag);
403 if (!qflag && tag[0] == '\0') {
404 printf("%15s%8s %7s%8s%8s%8s %7s%8s%8s\n"
405 , "Filesystem"
49#endif /* not lint */
50
51/*
52 * Disk quota reporting program.
53 */
54#include <sys/param.h>
55#include <sys/types.h>
56#include <sys/file.h>

--- 341 unchanged lines hidden (view full) ---

398 char *name, *tag;
399{
400
401 printf("Disk quotas for %s %s (%cid %lu): %s\n", qfextension[type],
402 name, *qfextension[type], id, tag);
403 if (!qflag && tag[0] == '\0') {
404 printf("%15s%8s %7s%8s%8s%8s %7s%8s%8s\n"
405 , "Filesystem"
406 , "blocks"
406 , "usage"
407 , "quota"
408 , "limit"
409 , "grace"
410 , "files"
411 , "quota"
412 , "limit"
413 , "grace"
414 );

--- 310 unchanged lines hidden ---
407 , "quota"
408 , "limit"
409 , "grace"
410 , "files"
411 , "quota"
412 , "limit"
413 , "grace"
414 );

--- 310 unchanged lines hidden ---