OpenBSD CVS

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


[BACK] Up to [local] / src / usr.sbin / edquota

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.60 / (download) - annotate - [select for diffs], Fri Jun 28 13:32:47 2019 UTC (4 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, HEAD
Changes since 1.59: +3 -3 lines
Diff to previous 1.59 (colored)

When system calls indicate an error they return -1, not some arbitrary
value < 0.  errno is only updated in this case.  Change all (most?)
callers of syscalls to follow this better, and let's see if this strictness
helps us in the future.

Revision 1.59 / (download) - annotate - [select for diffs], Sun Sep 16 02:44:07 2018 UTC (5 years, 8 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.58: +2 -6 lines
Diff to previous 1.58 (colored)

Use uid_from_user(3) and gid_from_group(3) in utilities that
do repeated lookups.  OK tb@

Revision 1.58 / (download) - annotate - [select for diffs], Thu Apr 26 12:42:51 2018 UTC (6 years, 1 month ago) by guenther
Branch: MAIN
Changes since 1.57: +1 -1 lines
Diff to previous 1.57 (colored)

Use <fcntl.h> instead of <sys/file.h> for open() and friends.
Delete a bunch of unnecessary #includes and sort to match style(9)
while doing the above cleanup.

ok deraadt@ krw@

Revision 1.57 / (download) - annotate - [select for diffs], Thu Aug 20 22:39:29 2015 UTC (8 years, 9 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.56: +1 -1 lines
Diff to previous 1.56 (colored)

stdlib.h is in scope; do not cast malloc/calloc/realloc*
ok millert krw

Revision 1.56 / (download) - annotate - [select for diffs], Mon Feb 9 23:00:14 2015 UTC (9 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored)

clean up flags++ instances around getopt()
ok florian

Revision 1.55 / (download) - annotate - [select for diffs], Fri Jan 16 06:40:16 2015 UTC (9 years, 4 months ago) by deraadt
Branch: MAIN
Changes since 1.54: +3 -2 lines
Diff to previous 1.54 (colored)

Replace <sys/param.h> with <limits.h> and other less dirty headers where
possible.  Annotate <sys/param.h> lines with their current reasons.  Switch
to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc.  Change
MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where
sensible to avoid pulling in the pollution.  These are the files confirmed
through binary verification.
ok guenther, millert, doug (helped with the verification protocol)

Revision 1.54 / (download) - annotate - [select for diffs], Tue Oct 7 02:16:54 2014 UTC (9 years, 8 months ago) by guenther
Branch: MAIN
Changes since 1.53: +12 -11 lines
Diff to previous 1.53 (colored)

When reading time intervals, start with a long long and convert from there.
Similarly, print them by casting to long long and using %lld.

ok otto@

Revision 1.53 / (download) - annotate - [select for diffs], Sun Jul 20 01:38:40 2014 UTC (9 years, 10 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.52: +2 -1 lines
Diff to previous 1.52 (colored)

Make sure the correct errno is reported by warn* or err* and not
the errno of an intervening cleanup operation like close/unlink/etc.

Diff from Doug Hogan (doug (at) acyclic.org)

Revision 1.52 / (download) - annotate - [select for diffs], Sun May 18 05:08:07 2014 UTC (10 years ago) by chl
Branch: MAIN
Changes since 1.51: +4 -4 lines
Diff to previous 1.51 (colored)

replace some (type *)0 to NULL

ok krw@ millert@

Revision 1.51 / (download) - annotate - [select for diffs], Sat Nov 23 22:51:42 2013 UTC (10 years, 6 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored)

yet more unsigned char casts for ctype
checked by jca

Revision 1.50 / (download) - annotate - [select for diffs], Sun Apr 21 12:33:06 2013 UTC (11 years, 1 month ago) by jsing
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.49: +5 -4 lines
Diff to previous 1.49 (colored)

Unbreak edquota by fixing the temporary file name template. Whilst here,
fold pathnames.h into edquota.c - we do not really need a header file for
a single define.

ok deraadt@ guenther@ millert@

Revision 1.49 / (download) - annotate - [select for diffs], Tue Oct 27 23:59:51 2009 UTC (14 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0, OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.48: +0 -11 lines
Diff to previous 1.48 (colored)

rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
unmaintainable).  these days, people use source.  these id's do not provide
any benefit, and do hurt the small install media
(the 33,000 line diff is essentially mechanical)
ok with the idea millert, ok dms

Revision 1.48 / (download) - annotate - [select for diffs], Wed Oct 17 20:02:33 2007 UTC (16 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.47: +9 -12 lines
Diff to previous 1.47 (colored)

- Be more careful about pre-existing SIGCHLD handlers (or SIG_IGN) by
  temporarily restoring default behaviour.  This is not 100% ideal.
  But this fixes editor handling in mail... bah, it is really unfortunate
  that got broken
- refactor the restoration code as well, to make it simpler
ok ray

Revision 1.47 / (download) - annotate - [select for diffs], Fri Aug 31 23:14:21 2007 UTC (16 years, 9 months ago) by ray
Branch: MAIN
Changes since 1.46: +52 -48 lines
Diff to previous 1.46 (colored)

Copy editit() from sendbug, synchronizing editor calling code.

OK otto, millert, beck, mbalmer, deraadt.

Revision 1.46 / (download) - annotate - [select for diffs], Mon Aug 6 19:16:07 2007 UTC (16 years, 10 months ago) by sobrado
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.45: +5 -4 lines
Diff to previous 1.45 (colored)

the ellipsis is not an optional argument; while here, sync the usage
and synopsis of commands

lots of good ideas by jmc@

ok jmc@

Revision 1.45 / (download) - annotate - [select for diffs], Wed Oct 18 21:18:59 2006 UTC (17 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.44: +28 -28 lines
Diff to previous 1.44 (colored)

do not name FILE * variables "fd" since it is confusing

Revision 1.44 / (download) - annotate - [select for diffs], Sun Apr 2 00:50:40 2006 UTC (18 years, 2 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.43: +2 -2 lines
Diff to previous 1.43 (colored)

use SEEK_* for lseek()

Revision 1.43 / (download) - annotate - [select for diffs], Sat Nov 12 15:26:23 2005 UTC (18 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.42: +4 -7 lines
Diff to previous 1.42 (colored)

more asprintf; ok dhill@mindcry.org

Revision 1.42 / (download) - annotate - [select for diffs], Fri Apr 1 04:31:11 2005 UTC (19 years, 2 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.41: +3 -3 lines
Diff to previous 1.41 (colored)

these commands said "blocks" when they meant "KBytes" (they even calculated
it so).  pointed out by janc@cyberspace.org, pr 3956

Revision 1.41 / (download) - annotate - [select for diffs], Tue Mar 9 18:26:42 2004 UTC (20 years, 3 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.40: +2 -2 lines
Diff to previous 1.40 (colored)

type, Marek Blaszkowski

Revision 1.40 / (download) - annotate - [select for diffs], Thu Jun 26 19:47:08 2003 UTC (20 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.39: +16 -48 lines
Diff to previous 1.39 (colored)

strict proto cleanups

Revision 1.39 / (download) - annotate - [select for diffs], Mon Jun 2 23:36:53 2003 UTC (21 years ago) by millert
Branch: MAIN
Changes since 1.38: +2 -6 lines
Diff to previous 1.38 (colored)

Remove the advertising clause in the UCB license which Berkeley
rescinded 22 July 1999.  Proofed by myself and Theo.

Revision 1.38 / (download) - annotate - [select for diffs], Fri Apr 25 18:55:39 2003 UTC (21 years, 1 month ago) by avsm
Branch: MAIN
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored)

replace an unbounded %s in a sscanf with a bounded one
ok millert@

Revision 1.37 / (download) - annotate - [select for diffs], Wed Apr 2 20:30:09 2003 UTC (21 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.36: +6 -4 lines
Diff to previous 1.36 (colored)

strlcpy; millert ok

Revision 1.36 / (download) - annotate - [select for diffs], Thu Mar 13 09:09:46 2003 UTC (21 years, 3 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.35: +5 -4 lines
Diff to previous 1.35 (colored)

lots of sprintf -> snprintf and strcpy -> strlcpy; checked by tedu

Revision 1.35 / (download) - annotate - [select for diffs], Fri Sep 6 21:49:21 2002 UTC (21 years, 9 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

cope with INITQFNAMES without a ;

Revision 1.34 / (download) - annotate - [select for diffs], Fri Sep 6 18:29:37 2002 UTC (21 years, 9 months ago) by deraadt
Branch: MAIN
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored)

no ; after INITQFNAMES

Revision 1.33 / (download) - annotate - [select for diffs], Tue Jun 4 00:09:08 2002 UTC (22 years ago) by deraadt
Branch: MAIN
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored)

spelling; raj@cerias.purdue.edu

Revision 1.32 / (download) - annotate - [select for diffs], Wed May 29 09:47:20 2002 UTC (22 years ago) by deraadt
Branch: MAIN
Changes since 1.31: +5 -5 lines
Diff to previous 1.31 (colored)

more snprintf

Revision 1.31 / (download) - annotate - [select for diffs], Sun May 26 09:25:21 2002 UTC (22 years ago) by deraadt
Branch: MAIN
Changes since 1.30: +3 -2 lines
Diff to previous 1.30 (colored)

pid_t cleanup

Revision 1.30 / (download) - annotate - [select for diffs], Thu Mar 14 16:44:24 2002 UTC (22 years, 3 months ago) by mpech
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.29: +12 -12 lines
Diff to previous 1.29 (colored)

kill more registers.

millert@ ok

Revision 1.29 / (download) - annotate - [select for diffs], Sat Feb 16 21:28:01 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
Changes since 1.28: +16 -16 lines
Diff to previous 1.28 (colored)

Part one of userland __P removal.  Done with a simple regexp with some minor hand editing to make comments line up correctly.  Another pass is forthcoming that handles the cases that could not be done automatically.

Revision 1.28 / (download) - annotate - [select for diffs], Tue Sep 4 23:35:59 2001 UTC (22 years, 9 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.27: +10 -7 lines
Diff to previous 1.27 (colored)

Replace the deprecated BSD sigsetmask/sigblock/sigpause functions with their POSIX counterparts.

Revision 1.27 / (download) - annotate - [select for diffs], Mon Jan 15 05:17:17 2001 UTC (23 years, 4 months ago) by angelos
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.26: +5 -11 lines
Diff to previous 1.26 (colored)

Revert previous patch (I should stop believing Theo, esp. when he's
intoxicated). Thanks to Paul Janzen for pointing this out.

Revision 1.26 / (download) - annotate - [select for diffs], Sun Jan 14 23:03:39 2001 UTC (23 years, 4 months ago) by angelos
Branch: MAIN
Changes since 1.25: +12 -6 lines
Diff to previous 1.25 (colored)

Handle quotas over 4G, PR 1534 (bob@prophecy.lu)

Revision 1.25 / (download) - annotate - [select for diffs], Thu Dec 21 09:48:05 2000 UTC (23 years, 5 months ago) by pjanzen
Branch: MAIN
Changes since 1.24: +34 -24 lines
Diff to previous 1.24 (colored)

Deal with quotas over 4G correctly; also, tidy a bit and be a touch more
paranoid with some buffers.

Revision 1.23.4.1 / (download) - annotate - [select for diffs], Fri Oct 6 21:24:21 2000 UTC (23 years, 8 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.23: +6 -6 lines
Diff to previous 1.23 (colored) next main 1.24 (colored)

Pull in patch from current:
Fix (millert):
warnx?/errx? paranoia (use "%s" not a bare string unless it is a
constant).  These are not security holes but it is worth fixing
them anyway both for robustness and so folks looking for examples
in the tree are not misled into doing something potentially dangerous.
Furthermore, it is a bad idea to assume that pathnames will not
include '%' in them and that error routines don't return strings
with '%' in them (especially in light of the possibility of locales).

Revision 1.24 / (download) - annotate - [select for diffs], Fri Jun 30 16:00:24 2000 UTC (23 years, 11 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.23: +6 -6 lines
Diff to previous 1.23 (colored)

warnx?/errx? paranoia (use "%s" not a bare string unless it is a
constant).  These are not security holes but it is worth fixing
them anyway both for robustness and so folks looking for examples
in the tree are not misled into doing something potentially dangerous.
Furthermore, it is a bad idea to assume that pathnames will not
include '%' in them and that error routines don't return strings
with '%' in them (especially in light of the possibility of locales).

Revision 1.23 / (download) - annotate - [select for diffs], Tue Jun 15 17:21:25 1999 UTC (25 years ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE, OPENBSD_2_6_BASE, OPENBSD_2_6
Branch point for: OPENBSD_2_7
Changes since 1.22: +33 -20 lines
Diff to previous 1.22 (colored)

change getentry() args to solve problem

Revision 1.22 / (download) - annotate - [select for diffs], Tue Jun 15 17:08:25 1999 UTC (25 years ago) by millert
Branch: MAIN
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored)

Check return value of getentry() for -1, not < 0 since it returns
an unsigned value; jon@oaktree.co.uk

Revision 1.21 / (download) - annotate - [select for diffs], Sun Jan 3 10:06:35 1999 UTC (25 years, 5 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5
Changes since 1.20: +3 -3 lines
Diff to previous 1.20 (colored)

fix overflow; bde

Revision 1.20 / (download) - annotate - [select for diffs], Mon Jul 13 02:11:47 1998 UTC (25 years, 11 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_4_BASE, OPENBSD_2_4
Changes since 1.19: +6 -6 lines
Diff to previous 1.19 (colored)

ftpd: sleep for an indeterminate amount for non-existant logins
      to simulate a crypt, like login does.
Use SEEK_* not L_* and kill some 0L's used in lseek while we're there.

Revision 1.19 / (download) - annotate - [select for diffs], Mon May 18 19:09:52 1998 UTC (26 years ago) by deraadt
Branch: MAIN
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored)

MAXPATHLEN not MAXPATHLEN+1

Revision 1.18 / (download) - annotate - [select for diffs], Sun Mar 22 21:22:59 1998 UTC (26 years, 2 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.17: +13 -11 lines
Diff to previous 1.17 (colored)

Don't assume all-numeric names are id's, look up as a name in
passwd first.  Noted by Solar Designer <solar@FALSE.COM>

Revision 1.17 / (download) - annotate - [select for diffs], Wed Aug 20 05:32:17 1997 UTC (26 years, 9 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_2_BASE, OPENBSD_2_2
Changes since 1.16: +93 -104 lines
Diff to previous 1.16 (colored)

Some KNF and use warn/err.

Revision 1.16 / (download) - annotate - [select for diffs], Mon Jun 30 06:05:01 1997 UTC (26 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.15: +30 -17 lines
Diff to previous 1.15 (colored)

Wall. uid & gid are not perfect .. but that is OK

Revision 1.15 / (download) - annotate - [select for diffs], Tue Jan 28 21:28:43 1997 UTC (27 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored)

repair quotactl() types

Revision 1.14 / (download) - annotate - [select for diffs], Fri Jan 17 07:14:04 1997 UTC (27 years, 4 months ago) by millert
Branch: MAIN
Changes since 1.13: +3 -3 lines
Diff to previous 1.13 (colored)

r?index -> strr?chr

Revision 1.13 / (download) - annotate - [select for diffs], Mon Sep 16 02:19:37 1996 UTC (27 years, 8 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored)

_PATH_TMP -> _PATH_TMPFILE

Revision 1.12 / (download) - annotate - [select for diffs], Sun Sep 1 01:41:44 1996 UTC (27 years, 9 months ago) by deraadt
Branch: MAIN
Changes since 1.11: +4 -1 lines
Diff to previous 1.11 (colored)

fix warnings

Revision 1.11 / (download) - annotate - [select for diffs], Thu Aug 29 03:33:48 1996 UTC (27 years, 9 months ago) by deraadt
Branch: MAIN
Changes since 1.10: +25 -12 lines
Diff to previous 1.10 (colored)

type fixes

Revision 1.10 / (download) - annotate - [select for diffs], Wed Jun 19 13:27:16 1996 UTC (27 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.9: +16 -9 lines
Diff to previous 1.9 (colored)

do not use system() to start $EDITOR, but fake system() ourselves

Revision 1.9 / (download) - annotate - [select for diffs], Thu Jun 6 20:27:49 1996 UTC (28 years ago) by deraadt
Branch: MAIN
Changes since 1.8: +5 -2 lines
Diff to previous 1.8 (colored)

do not forget to unlink tmpfil

Revision 1.8 / (download) - annotate - [select for diffs], Thu Jun 6 12:10:04 1996 UTC (28 years ago) by deraadt
Branch: MAIN
Changes since 1.7: +12 -8 lines
Diff to previous 1.7 (colored)

system() $EDITOR safely

Revision 1.7 / (download) - annotate - [select for diffs], Thu Jun 6 12:00:55 1996 UTC (28 years ago) by deraadt
Branch: MAIN
Changes since 1.6: +6 -3 lines
Diff to previous 1.6 (colored)

use system, so that $EDITOR expansion works

Revision 1.6 / (download) - annotate - [select for diffs], Thu Apr 25 11:04:08 1996 UTC (28 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.5: +3 -2 lines
Diff to previous 1.5 (colored)

permit quotas to work on mfs; problem reported by rdante@pnet.net

Revision 1.5 / (download) - annotate - [select for diffs], Sun Apr 21 23:40:32 1996 UTC (28 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.4: +4 -3 lines
Diff to previous 1.4 (colored)

sync to netbsd 960418

Revision 1.4 / (download) - annotate - [select for diffs], Sun Jan 7 05:28:04 1996 UTC (28 years, 5 months ago) by deraadt
Branch: MAIN
Changes since 1.3: +3 -2 lines
Diff to previous 1.3 (colored)

accept either ffs or ufs for filesystem name

Revision 1.3 / (download) - annotate - [select for diffs], Mon Nov 6 21:40:46 1995 UTC (28 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.2: +1 -1 lines
Diff to previous 1.2 (colored)

Complete change from ufs -> ffs; (From Tatoku Ogaito; PR #1679)

Revision 1.2 / (download) - annotate - [select for diffs], Tue Oct 24 14:32:18 1995 UTC (28 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored)

ufs -> ffs

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 18 08:47:33 1995 UTC (28 years, 7 months ago) by deraadt
CVS Tags: netbsd_1_1
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

initial import of NetBSD tree

Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 18 08:47:33 1995 UTC (28 years, 7 months ago) by deraadt
Branch: MAIN

Initial revision

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.