The NetBSD Project

CVS log for src/usr.sbin/edquota/edquota.c

[BACK] Up to [cvs.NetBSD.org] / src / usr.sbin / edquota

Request diff between arbitrary revisions


Default branch: MAIN
Current tag: MAIN


Revision 1.52 / (download) - annotate - [select for diffs], Tue Aug 14 04:53:43 2012 UTC (9 months ago) by dholland
Branch: MAIN
CVS Tags: yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, tls-maxphys-nbase, tls-maxphys-base, tls-maxphys, agc-symver-base, agc-symver, HEAD
Changes since 1.51: +4 -3 lines
Diff to previous 1.51 (colored)

Grr. The ATF quota tests demand failing silently in certain circumstances.
For netbsd-6 we will just have to go with the flow, as I'm not touching
anything outside edquota tonight.

Revision 1.51 / (download) - annotate - [select for diffs], Tue Aug 14 04:48:42 2012 UTC (9 months ago) by dholland
Branch: MAIN
Changes since 1.50: +14 -6 lines
Diff to previous 1.50 (colored)

three more minor fixes.

Revision 1.50 / (download) - annotate - [select for diffs], Tue Aug 14 03:55:48 2012 UTC (9 months ago) by dholland
Branch: MAIN
Changes since 1.49: +365 -267 lines
Diff to previous 1.49 (colored)

Make editor-based edquota work again.

The format is somewhat different; I'm operating under the assumption
that nobody has automated editing scripts for the old format because
it's much easier just to use the command-line interface of
edquota. The new format is more scalable and more parseable.

Also, do a better job of diagnosing editing errors, and don't blindly
erase all quota information for the user being edited when a parse
error occurs after editing.

Revision 1.49 / (download) - annotate - [select for diffs], Mon Aug 13 23:08:58 2012 UTC (9 months ago) by dholland
Branch: MAIN
Changes since 1.48: +8 -2 lines
Diff to previous 1.48 (colored)

Bail out early if none of the mounted volumes support quotas. Avoids a
null print in interactive use.

Revision 1.48 / (download) - annotate - [select for diffs], Mon Aug 13 22:21:05 2012 UTC (9 months ago) by dholland
Branch: MAIN
Changes since 1.47: +26 -29 lines
Diff to previous 1.47 (colored)

Minor cleanup: use bitfields instead of a flags word for private state
flags, remove now-unused qfname field.

Revision 1.47 / (download) - annotate - [select for diffs], Sat Apr 7 05:07:32 2012 UTC (13 months, 1 week ago) by christos
Branch: MAIN
CVS Tags: yamt-pagecache-base5, yamt-pagecache-base4
Changes since 1.46: +11 -4 lines
Diff to previous 1.46 (colored)

use getfsspecname()

Revision 1.46 / (download) - annotate - [select for diffs], Mon Jan 30 19:19:20 2012 UTC (15 months, 2 weeks ago) by dholland
Branch: MAIN
CVS Tags: netbsd-6-base
Branch point for: netbsd-6
Changes since 1.45: +86 -71 lines
Diff to previous 1.45 (colored)

Remove dependence on quotaprop.h, also quotautil.c (no longer used).

Like repquota, compile in the number of object types for now because
making it support an arbitrary number would take some hacking.

Revision 1.45 / (download) - annotate - [select for diffs], Mon Jan 30 19:18:36 2012 UTC (15 months, 2 weeks ago) by dholland
Branch: MAIN
Changes since 1.44: +12 -2 lines
Diff to previous 1.44 (colored)

Rely on libquota for fallback to direct access of old-style quota files.

Keep the code around in #if 0 blocks for now, just in case some of the
logic might turn out to be wanted in libquota.

Revision 1.44 / (download) - annotate - [select for diffs], Mon Jan 30 19:16:36 2012 UTC (15 months, 2 weeks ago) by dholland
Branch: MAIN
Changes since 1.43: +66 -29 lines
Diff to previous 1.43 (colored)

Don't use the old getvfsquota() here.

Revision 1.43 / (download) - annotate - [select for diffs], Sun Jan 29 07:16:00 2012 UTC (15 months, 2 weeks ago) by dholland
Branch: MAIN
Changes since 1.42: +3 -3 lines
Diff to previous 1.42 (colored)

Rename static inline "helper" functions:
   ufsclass2qtype -> quota_idtype_to_ufs
   qtype2ufsclass -> quota_idtype_from_ufs

The reason for the direction of "ufs" changing is that the old names
were among the symbols using "ufs" to mean "fs-independent". So the
old names were for translating "ufsclass" (fs-independent quota id
type) to "qtype" (ufs-specific quota id type) and vice versa.

These functions are used in only two places, both of which are
inappropriate, so at some point they should probably be removed.
They're also identity transformations so not particularly helpful,
unless one were to make a careful and concerted effort to distinguish
the ufs quota code numbers from the fs-independent ones. This has not
been done and is probably impossible without support from a program
verifier, and maybe not even then.

They are static inline, so no compat concerns arise.

Also adjust the symbols they use to avoid <quota/quotaprop.h>.

Revision 1.42 / (download) - annotate - [select for diffs], Sun Jan 29 06:23:20 2012 UTC (15 months, 2 weeks ago) by dholland
Branch: MAIN
Changes since 1.41: +8 -4 lines
Diff to previous 1.41 (colored)

Change dqblk_to_quotaval() from quota1_subr.c to dqblk_to_quotavals(),
and pass in two single quotaval structs (for blocks and inodes)
instead of an array of (implicitly) QUOTA_NLIMITS quotaval structs
indexed by constants from quotaprop.h.

Note: because this code is used by COMPAT_50 as well as ufs, this
change requires a kernel version bump. (The code is also used by
edquota, but via .PATH so it's not ABI-sensitive there.)

Revision 1.41 / (download) - annotate - [select for diffs], Mon Jan 9 15:44:42 2012 UTC (16 months, 1 week ago) by dholland
Branch: MAIN
Changes since 1.40: +59 -59 lines
Diff to previous 1.40 (colored)

"quotaclass" -> "idtype". After lengthy wrangling on the mailing lists
the best conclusion for naming was to give up on "classes" and "types"
and use "idtype" for users vs. groups and "objtype" for blocks vs. files.

Revision 1.40 / (download) - annotate - [select for diffs], Mon Jan 9 15:44:05 2012 UTC (16 months, 1 week ago) by dholland
Branch: MAIN
Changes since 1.39: +90 -136 lines
Diff to previous 1.39 (colored)

Use quota_put() and quota_delete() to update quotas instead of making
quota proplib RPCs.

Revision 1.39 / (download) - annotate - [select for diffs], Fri Nov 25 16:55:05 2011 UTC (17 months, 3 weeks ago) by dholland
Branch: MAIN
Changes since 1.38: +66 -66 lines
Diff to previous 1.38 (colored)

Rename struct ufs_quota_entry -> struct quotaval.

Revision 1.38 / (download) - annotate - [select for diffs], Sun Nov 13 15:42:35 2011 UTC (18 months ago) by dholland
Branch: MAIN
Changes since 1.37: +194 -143 lines
Diff to previous 1.37 (colored)

Split up excessively large main().
Fix -d behavior to match documentation.

Revision 1.37 / (download) - annotate - [select for diffs], Sun Nov 13 15:41:34 2011 UTC (18 months ago) by dholland
Branch: MAIN
Changes since 1.36: +136 -62 lines
Diff to previous 1.36 (colored)

Cleanup for edquota.

Factor out common malloc and linked list code. Distinguish lists of
quota info from single records.

Revision 1.36 / (download) - annotate - [select for diffs], Fri Sep 30 22:08:19 2011 UTC (19 months, 2 weeks ago) by jym
Branch: MAIN
CVS Tags: yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base
Branch point for: yamt-pagecache
Changes since 1.35: +6 -6 lines
Diff to previous 1.35 (colored)

Fix an implementation inconsistency with the prop_*_send_syscall() and
prop_*_recv_syscall() functions from proplib(3). They now share the
same logic as the one from prop_*_send_ioctl() functions:
- returns an int
- 0 indicates "no error", otherwise returns the error number (and
set errno)

Many consumers of the prop_*_{ioctl, syscall} expect errno to be set
on error and use err() to display the error message. As such, ensures that
errno gets set before returning from these functions.

prop_*_send_syscall() functions returned a boolean, and now return an int.
Fix all call sites to use the new paradigm (only quota2 is affected in src).

As the prop_*_{send,recv}_syscall() API appeared in -current and is only
used by the recent quota2 code, I am not bumping the lib. The API change
only affects the prop_*_send_syscall() function (recv_syscall()s were
already used correctly), so ensure you are not mixing "old" -current
quota binaries with a new proplib(3) (or the other way around). This
change will be announced via a HEADS-UP and UPDATING.

Does not affect the kernel part of proplib.

Document the correct API in prop_array(3) and prop_dictionary(3).

Thanks to Francois Tigeot for noticing the API inconsistency and
reporting it on tech-kern@.

ok bouyer@.

Revision 1.35 / (download) - annotate - [select for diffs], Sun Jul 10 07:54:49 2011 UTC (22 months, 1 week ago) by dholland
Branch: MAIN
Changes since 1.34: +16 -18 lines
Diff to previous 1.34 (colored)

Minor cosmetic fixes, no semantic changes. (object file diffs have been
checked)

Revision 1.34 / (download) - annotate - [select for diffs], Sun Jul 10 07:31:48 2011 UTC (22 months, 1 week ago) by dholland
Branch: MAIN
Changes since 1.33: +500 -479 lines
Diff to previous 1.33 (colored)

tsort contents of file.

Revision 1.33 / (download) - annotate - [select for diffs], Sun Jul 10 07:19:24 2011 UTC (22 months, 1 week ago) by dholland
Branch: MAIN
Changes since 1.32: +3 -3 lines
Diff to previous 1.32 (colored)

use __dead

Revision 1.32 / (download) - annotate - [select for diffs], Thu Mar 24 17:05:47 2011 UTC (2 years, 1 month ago) by bouyer
Branch: MAIN
CVS Tags: cherry-xenmp-base, cherry-xenmp
Changes since 1.31: +150 -133 lines
Diff to previous 1.31 (colored)

Add a new libquota library, which contains some blocks to build and/or
parse quota plists; as well as a getfsquota() function to retrieve quotas
for a single id from a single filesystem (whatever filesystem this is:
a local quota-enabled fs or NFS). This is build on functions getufsquota()
(for local filesystems with UFS-like quotas) and getnfsquota();
which are also available to userland programs.
move functions from quota2_subr.c to libquota or libprop as appropriate,
and ajust in-tree quota tools.
move some declarations from kernel headers to either sys/quota.h or
quota/quota.h as appropriate. ufs/ufs/quota.h still installed because
it's needed by other installed ufs headers.
ufs/ufs/quota1.h still installed as a quick&dirty way to get a code
using the old quotactl() to compile (just include ufs/ufs/quota1.h instead of
ufs/ufs/quota.h - old code won't compile without this change and this is
on purpose).
Discussed on tech-kern@ and tech-net@ (long thread, but not much about
libquota itself ...)

Revision 1.31 / (download) - annotate - [select for diffs], Sun Mar 6 22:34:57 2011 UTC (2 years, 2 months ago) by christos
Branch: MAIN
Changes since 1.30: +201 -273 lines
Diff to previous 1.30 (colored)

- KNF
- merge code
- fix error printing
- don't use static buffers

Revision 1.30 / (download) - annotate - [select for diffs], Sun Mar 6 17:08:42 2011 UTC (2 years, 2 months ago) by bouyer
Branch: MAIN
Changes since 1.29: +726 -384 lines
Diff to previous 1.29 (colored)

merge the bouyer-quota2 branch. This adds a new on-disk format
to store disk quota usage and limits, integrated with ffs
metadata. Usage is checked by fsck_ffs (no more quotacheck)
and is covered by the WAPBL journal. Enabled with kernel
option QUOTA2 (added where QUOTA was enabled in kernel config files),
turned on with tunefs(8) on a per-filesystem
basis. mount_mfs(8) can also turn quotas on.

See http://mail-index.netbsd.org/tech-kern/2011/02/19/msg010025.html
for details.

Revision 1.29 / (download) - annotate - [select for diffs], Mon Jul 21 13:36:58 2008 UTC (4 years, 9 months ago) by lukem
Branch: MAIN
CVS Tags: wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, netbsd-5, matt-premerge-20091211, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-premerge-20101231, matt-mips64-base2, jym-xensuspend-nbase, jym-xensuspend-base, jym-xensuspend, bouyer-quota2-nbase, bouyer-quota2-base
Branch point for: bouyer-quota2
Changes since 1.28: +3 -3 lines
Diff to previous 1.28 (colored)

Remove the \n and tabs from the __COPYRIGHT() strings.
Tweak to use a consistent format.

Revision 1.28 / (download) - annotate - [select for diffs], Fri May 2 19:59:19 2008 UTC (5 years ago) by xtraeme
Branch: MAIN
CVS Tags: yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, hpcarm-cleanup-nbase
Branch point for: wrstuden-revivesa
Changes since 1.27: +51 -51 lines
Diff to previous 1.27 (colored)

WARNS=4 love.

Revision 1.27 / (download) - annotate - [select for diffs], Fri May 26 13:21:47 2006 UTC (6 years, 11 months ago) by jnemeth
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base, wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, netbsd-4-base, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-RC1, netbsd-4-0-1-RELEASE, netbsd-4-0, netbsd-4, matt-mips64-base, matt-mips64, matt-armv6-prevmlocking, matt-armv6-nbase, matt-armv6-base, matt-armv6, keiichi-mipv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-base, hpcarm-cleanup, cube-autoconf-base, cube-autoconf, abandoned-netbsd-4-base, abandoned-netbsd-4
Branch point for: yamt-pf42
Changes since 1.26: +3 -3 lines
Diff to previous 1.26 (colored)

Coverity CID 3785: calling fclose() twice on same file pointer
Coverity CID 3780: dereference of NULL pointer
Approved by: christos@

Revision 1.26 / (download) - annotate - [select for diffs], Tue May 23 01:23:49 2006 UTC (6 years, 11 months ago) by christos
Branch: MAIN
Changes since 1.25: +16 -12 lines
Diff to previous 1.25 (colored)

Coverity CID 3227, 3226: Don't leak fd's

Revision 1.25 / (download) - annotate - [select for diffs], Mon Jan 5 23:23:38 2004 UTC (9 years, 4 months ago) by jmmv
Branch: MAIN
CVS Tags: netbsd-3-base, netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1, netbsd-3-1-1-RELEASE, netbsd-3-1, netbsd-3-0-RELEASE, netbsd-3-0-RC6, netbsd-3-0-RC5, netbsd-3-0-RC4, netbsd-3-0-RC3, netbsd-3-0-RC2, netbsd-3-0-RC1, netbsd-3-0-3-RELEASE, netbsd-3-0-2-RELEASE, netbsd-3-0-1-RELEASE, netbsd-3-0, netbsd-3, netbsd-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-1, netbsd-2-0-base, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE, netbsd-2-0, netbsd-2
Changes since 1.24: +2 -2 lines
Diff to previous 1.24 (colored)

Homogenize usage messages: make the 'usage' word all lowercase, as this seems
to be the most common practice in our tree.

Revision 1.24 / (download) - annotate - [select for diffs], Thu Aug 7 11:25:20 2003 UTC (9 years, 9 months ago) by agc
Branch: MAIN
Changes since 1.23: +2 -6 lines
Diff to previous 1.23 (colored)

Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22366, verified by myself.

Revision 1.23 / (download) - annotate - [select for diffs], Thu Dec 5 22:54:45 2002 UTC (10 years, 5 months ago) by jonb
Branch: MAIN
CVS Tags: fvdl_fs64_base
Changes since 1.22: +9 -2 lines
Diff to previous 1.22 (colored)

Fix the way $EDITOR is started so the variable can have flags in addition
to the name of the binary to run.

Revision 1.22 / (download) - annotate - [select for diffs], Wed Dec 4 21:01:13 2002 UTC (10 years, 5 months ago) by bouyer
Branch: MAIN
Changes since 1.21: +80 -11 lines
Diff to previous 1.21 (colored)

Add new command-line flags, which ease edquota use in bach scripts:
- -f, which allows to restrict edquota to only one quota-enabled filesystem
- -s and -h, which allows to set soft and hard limits respectively, without
  the need to edit a file.

Revision 1.21 / (download) - annotate - [select for diffs], Fri Apr 14 06:26:53 2000 UTC (13 years, 1 month ago) by simonb
Branch: MAIN
CVS Tags: netbsd-1-6-base, netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-5-base, netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2, netbsd-1-5, minoura-xpg4dl-base, minoura-xpg4dl
Branch point for: netbsd-1-6
Changes since 1.20: +1 -3 lines
Diff to previous 1.20 (colored)

Don't declare 'extern opt*' getopt variables.

Revision 1.20 / (download) - annotate - [select for diffs], Fri Jan 21 17:08:37 2000 UTC (13 years, 4 months ago) by mycroft
Branch: MAIN
Changes since 1.19: +1 -2 lines
Diff to previous 1.19 (colored)

Nuke `extern int errno;' in code we compile with -Wstrict-prototypes.  We get
the correct definition from errno.h.

Revision 1.19 / (download) - annotate - [select for diffs], Thu Dec 16 17:29:53 1999 UTC (13 years, 5 months ago) by bouyer
Branch: MAIN
CVS Tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221
Changes since 1.18: +10 -7 lines
Diff to previous 1.18 (colored)

Explicitely cast to (u_quad_t) calls to btodb() and dbtob() to avoid
int overflow. It's now possible to add/display quotas of more than
4G.
XXX I'm sure there is a PR open on this but I couln't find it with the
usual search engines. If someone knows it's number ...

Revision 1.18 / (download) - annotate - [select for diffs], Mon Aug 16 03:12:31 1999 UTC (13 years, 9 months ago) by simonb
Branch: MAIN
CVS Tags: comdex-fall-1999-base, comdex-fall-1999
Branch point for: wrstuden-devbsize
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored)

Spell "privilege" correctly (correct spelling from Jonathan Stone).

Revision 1.17 / (download) - annotate - [select for diffs], Mon Mar 30 03:33:05 1998 UTC (15 years, 1 month ago) by mrg
Branch: MAIN
CVS Tags: netbsd-1-4-base, netbsd-1-4-RELEASE, netbsd-1-4-PATCH001
Branch point for: netbsd-1-4
Changes since 1.16: +1 -2 lines
Diff to previous 1.16 (colored)

remove unused extern.

Revision 1.16 / (download) - annotate - [select for diffs], Tue Oct 21 06:40:40 1997 UTC (15 years, 7 months ago) by mrg
Branch: MAIN
Changes since 1.15: +2 -1 lines
Diff to previous 1.15 (colored)

fix compile warning on the sparc (erik fair).

Revision 1.15 / (download) - annotate - [select for diffs], Fri Oct 17 02:25:08 1997 UTC (15 years, 7 months ago) by lukem
Branch: MAIN
CVS Tags: netbsd-1-3-base
Branch point for: netbsd-1-3
Changes since 1.14: +87 -93 lines
Diff to previous 1.14 (colored)

WARNSify, deprecate bcmp/perror et al in favour of memcmp/err* et al

Revision 1.14 / (download) - annotate - [select for diffs], Mon Aug 25 19:32:04 1997 UTC (15 years, 8 months ago) by kleink
Branch: MAIN
Changes since 1.13: +10 -8 lines
Diff to previous 1.13 (colored)

Lseek(2) usage cleanup: the use of L_SET/L_INCR/L_XTND is deprecated,
use SEEK_SET/SEEK_CUR/SEEK_END instead.

Revision 1.13 / (download) - annotate - [select for diffs], Sat Mar 8 21:39:06 1997 UTC (16 years, 2 months ago) by mikel
Branch: MAIN
Changes since 1.12: +17 -1 lines
Diff to previous 1.12 (colored)

prototype internal functions so this will build

Revision 1.12 / (download) - annotate - [select for diffs], Sat Mar 8 08:01:27 1997 UTC (16 years, 2 months ago) by mikel
Branch: MAIN
Changes since 1.11: +18 -3 lines
Diff to previous 1.11 (colored)

merge lite-2 changes.
also RCSid police, and add return types to all of the functions.

Revision 1.11 / (download) - annotate - [select for diffs], Sat Mar 30 23:42:33 1996 UTC (17 years, 1 month ago) by mark
Branch: MAIN
CVS Tags: netbsd-1-2-base, netbsd-1-2-RELEASE, netbsd-1-2-PATCH001, netbsd-1-2-BETA, netbsd-1-2
Changes since 1.10: +4 -3 lines
Diff to previous 1.10 (colored)

Use an integer instead of a char to store the getopt() return value in
order to work with compilers that default to unsigned chars.
Compare the getopt() return value with -1 instead of EOF.

Revision 1.10 / (download) - annotate - [select for diffs], Tue Nov 28 19:43:12 1995 UTC (17 years, 5 months ago) by jtc
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

merge in changes from 1.1 release branch

Revision 1.9 / (download) - annotate - [select for diffs], Fri Apr 21 04:41:21 1995 UTC (18 years, 1 month ago) by cgd
Branch: MAIN
CVS Tags: netbsd-1-1-base
Branch point for: netbsd-1-1
Changes since 1.8: +2 -1 lines
Diff to previous 1.8 (colored)

need stdlib.h

Revision 1.8 / (download) - annotate - [select for diffs], Tue Jan 3 02:06:29 1995 UTC (18 years, 4 months ago) by cgd
Branch: MAIN
Changes since 1.7: +1 -3 lines
Diff to previous 1.7 (colored)

<sys/queue.h> is no longer needed.

Revision 1.7 / (download) - annotate - [select for diffs], Fri Dec 23 16:39:28 1994 UTC (18 years, 5 months ago) by cgd
Branch: MAIN
Changes since 1.6: +3 -1 lines
Diff to previous 1.6 (colored)

add headers for prototypes.

Revision 1.6 / (download) - annotate - [select for diffs], Mon Jun 13 21:58:54 1994 UTC (18 years, 11 months ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-0-base, netbsd-1-0-RELEASE, netbsd-1-0-PATCH1, netbsd-1-0-PATCH06, netbsd-1-0-PATCH05, netbsd-1-0-PATCH04, netbsd-1-0-PATCH03, netbsd-1-0-PATCH02, netbsd-1-0-PATCH0, netbsd-1-0
Changes since 1.5: +3 -3 lines
Diff to previous 1.5 (colored)

Fix lseek() calls.

Revision 1.5 / (download) - annotate - [select for diffs], Mon Jun 13 21:55:11 1994 UTC (18 years, 11 months ago) by mycroft
Branch: MAIN
Changes since 1.4: +10 -9 lines
Diff to previous 1.4 (colored)

Merge local changes.

Revision 1.4 / (download) - annotate - [select for diffs], Mon Jun 13 20:49:42 1994 UTC (18 years, 11 months ago) by cgd
Branch: MAIN
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored)

update for new fs includes

Revision 1.3 / (download) - annotate - [select for diffs], Wed Mar 30 02:28:43 1994 UTC (19 years, 1 month ago) by cgd
Branch: MAIN
Changes since 1.2: +3 -3 lines
Diff to previous 1.2 (colored)

kill bad casts

Revision 1.2 / (download) - annotate - [select for diffs], Sun Aug 1 17:59:53 1993 UTC (19 years, 9 months ago) by mycroft
Branch: MAIN
Changes since 1.1: +2 -1 lines
Diff to previous 1.1 (colored)

Add RCS identifiers.

Revision 1.1 / (download) - annotate - [select for diffs], Fri Apr 9 12:15:50 1993 UTC (20 years, 1 month ago) by cgd
Branch: MAIN
CVS Tags: netbsd-alpha-1, netbsd-0-9-base, netbsd-0-9-RELEASE, netbsd-0-9-BETA, netbsd-0-9-ALPHA2, netbsd-0-9-ALPHA, netbsd-0-9, netbsd-0-8

added accton, edquota, flcopy, gettable, htable, iostat, quotaon,
repquota, trpt, and trsp, per (currently alpha) patch 125.

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>