OpenBSD CVS

CVS log for src/sbin/fsck_ffs/utilities.c


[BACK] Up to [local] / src / sbin / fsck_ffs

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.55 / (download) - annotate - [select for diffs], Wed Mar 8 04:43:06 2023 UTC (15 months ago) by guenther
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, HEAD
Changes since 1.54: +1 -5 lines
Diff to previous 1.54 (colored)

Delete obsolete /* ARGSUSED */ lint comments.

ok miod@ millert@

Revision 1.54 / (download) - annotate - [select for diffs], Mon Jul 13 06:52:53 2020 UTC (3 years, 10 months ago) by otto
Branch: MAIN
CVS Tags: 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
Changes since 1.53: +113 -4 lines
Diff to previous 1.53 (colored)

Both phase 1 and phase 5 need the cylinder group meta data, so save those
in phase one to be used in phase 5, unless we're tight on memory.
From FreeBSD; ok bket@

Revision 1.53 / (download) - annotate - [select for diffs], Sat Jun 20 07:49:04 2020 UTC (3 years, 11 months ago) by otto
Branch: MAIN
Changes since 1.52: +2 -2 lines
Diff to previous 1.52 (colored)

With filesystem having many cylinder groups and many inodes per cg the
ncg * ipg calcualtion can overflow if signed types are used.  Move
to uint32_t for the relevant values. Aligned with FreeBSD changes.
Also make sure newfs refuses to create an fs with more that 2^32-1
inodes.  ok millert@

Revision 1.52 / (download) - annotate - [select for diffs], Wed Feb 6 13:26:13 2019 UTC (5 years, 4 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.51: +3 -3 lines
Diff to previous 1.51 (colored)

Replace overlapping memcpy() with memmove() in getpathname().
Found the hard way and OK tb@

Revision 1.51 / (download) - annotate - [select for diffs], Thu Oct 15 03:10:05 2015 UTC (8 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4, 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.50: +16 -16 lines
Diff to previous 1.50 (colored)

fsck_ffs has a ^T signal handler which opens /dev/tty late.  Hoist that
opening to before the pledge, and cache the fd.
looked over by millert

Revision 1.50 / (download) - annotate - [select for diffs], Sat Sep 5 20:07:11 2015 UTC (8 years, 9 months ago) by guenther
Branch: MAIN
Changes since 1.49: +4 -5 lines
Diff to previous 1.49 (colored)

snprintf+write --> dprintf

ok deraadt@

Revision 1.49 / (download) - annotate - [select for diffs], Tue Jan 20 18:22:21 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.48: +2 -2 lines
Diff to previous 1.48 (colored)

Adjust <sys/param.h> comments regarding use of use of MAXFRAG, or
delete <sys/param.h> if now possible
ok guenther

Revision 1.48 / (download) - annotate - [select for diffs], Fri Jan 16 06:39:57 2015 UTC (9 years, 4 months ago) by deraadt
Branch: MAIN
Changes since 1.47: +5 -5 lines
Diff to previous 1.47 (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.47 / (download) - annotate - [select for diffs], Sat Sep 6 04:05:40 2014 UTC (9 years, 9 months ago) by guenther
Branch: MAIN
Changes since 1.46: +6 -5 lines
Diff to previous 1.46 (colored)

inodesc.id_entryno holds a file size, so upgrade it from int to u_int64_t;
  this fixes handling of very large files on FFS2.
Correct a copy-n-pasto that rendered useless the check for allocated
  fragmented that are marked free in the bitmap.
allocdir() returns an inode number, so return an ino_t.
sizeof()*N should be printed with %zu, while direct and indirect block
  numbers should be cast to (long long) use %lld

inodesc.id_entryno fix based on a diff from David Vasek <vasek@fido.cz>
ok krw@ otto@

Revision 1.46 / (download) - annotate - [select for diffs], Sat May 24 14:54:49 2014 UTC (10 years ago) by krw
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.45: +9 -11 lines
Diff to previous 1.45 (colored)

Use consistent format specifiers (%lld) and casts (long long) when
printing out block numbers and sector numbers. Make output verbiage
consistent. -Wall happier.

Original diff and ok chl@

Revision 1.45 / (download) - annotate - [select for diffs], Wed May 21 18:53:05 2014 UTC (10 years ago) by krw
Branch: MAIN
Changes since 1.44: +1 -2 lines
Diff to previous 1.44 (colored)

Nuke some trailing whitespace to shrink subsequent diffs.

Revision 1.44 / (download) - annotate - [select for diffs], Tue May 20 21:11:16 2014 UTC (10 years ago) by krw
Branch: MAIN
Changes since 1.43: +5 -15 lines
Diff to previous 1.43 (colored)

As suggested by guenther@ and millert@, replace seek+[read|write] with
p[read|write].  Makes the code much clearer by eliminating extra error
checking and verbiage.

No intentional functional change.

Tweaks by and ok guenther@

Revision 1.43 / (download) - annotate - [select for diffs], Fri May 9 13:19:34 2014 UTC (10 years, 1 month ago) by krw
Branch: MAIN
Changes since 1.42: +21 -14 lines
Diff to previous 1.42 (colored)

Fix '-b' option to work with the superblock locations output by newfs
on 4096-byte sector disks. No-op on 512-byte sector disks.

Adhering to the bedrock idea that ffs will *never* use anything but
512-byte block disk addressing (a.k.a. daddr_t), and believing that
the 'fake' bread()/bwrite() functions should always be using 512-btye
block numbers like their kernel big brothers, nuke the computed
dev_bsize and use DEV_BSIZE for conversions to/from byte offsets.

Spotted and various fixes tested by David Vasek.

Still to fix: scanning for superblocks on 4K disks.

ok otto@

Revision 1.42 / (download) - annotate - [select for diffs], Fri Nov 1 17:36:18 2013 UTC (10 years, 7 months ago) by krw
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.41: +9 -7 lines
Diff to previous 1.41 (colored)

Sprinkle (long long) casts where %lld is being used to print daddr_t
variables. Some random whitespace/knf repairs encountered on the way.

ok miod@ on inspection, feedback & more suggestions from millert@

Revision 1.41 / (download) - annotate - [select for diffs], Tue Jun 11 16:42:04 2013 UTC (11 years ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.40: +9 -9 lines
Diff to previous 1.40 (colored)

final removal of daddr64_t.  daddr_t has been 64 bit for a long enough
test period; i think 3 years ago the last bugs fell out.
ok otto beck others

Revision 1.40 / (download) - annotate - [select for diffs], Wed Apr 24 13:46:29 2013 UTC (11 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.39: +3 -2 lines
Diff to previous 1.39 (colored)

pretty print bigger off_t
ok tedu otto

Revision 1.39 / (download) - annotate - [select for diffs], Sun Apr 24 07:07:03 2011 UTC (13 years, 1 month ago) by otto
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
Changes since 1.38: +2 -3 lines
Diff to previous 1.38 (colored)

remove support for (very) old ffs on-disk formats; ok krw@ and no
objection form the usual suspects

Revision 1.38 / (download) - annotate - [select for diffs], Sat Apr 16 16:37:21 2011 UTC (13 years, 1 month ago) by otto
Branch: MAIN
Changes since 1.37: +20 -1 lines
Diff to previous 1.37 (colored)

Blend in some code from netbsd and freebsd that reduces memory consumption
and speeds things up in a lot of cases.
Prompted by Amit Kulkarni; ok krw@ on a slighly diffrenent incarnation

Revision 1.37 / (download) - annotate - [select for diffs], Thu Dec 10 16:01:51 2009 UTC (14 years, 6 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.36: +4 -5 lines
Diff to previous 1.36 (colored)

do not leak memory, found by parfait, ok millert otto
(one case was a false positive, but one is a modified copy of the other)

Revision 1.36 / (download) - annotate - [select for diffs], Tue Oct 27 23:59:32 2009 UTC (14 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.35: +1 -9 lines
Diff to previous 1.35 (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.35 / (download) - annotate - [select for diffs], Tue Jun 10 23:10:29 2008 UTC (16 years ago) by otto
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
Changes since 1.34: +3 -3 lines
Diff to previous 1.34 (colored)

reduce mem usage by about 20% by packing state and type of an inode in a single
byte. Original diff by drahn@; twists by me; ok millert@ thib@

Revision 1.34 / (download) - annotate - [select for diffs], Mon Jun 25 19:59:55 2007 UTC (16 years, 11 months ago) by otto
Branch: MAIN
CVS Tags: OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.33: +15 -15 lines
Diff to previous 1.33 (colored)

Teach fsck_ffs about 64-bit block addresses. ok (and help) moritz@ pedro@

Revision 1.33 / (download) - annotate - [select for diffs], Tue Apr 10 16:08:17 2007 UTC (17 years, 2 months ago) by millert
Branch: MAIN
Changes since 1.32: +24 -11 lines
Diff to previous 1.32 (colored)

Add support for checking ffs2 filesystems.  From pedro@ based on
the ufs2 changes in FreeBSD by Kirk Mckusick.

Revision 1.32 / (download) - annotate - [select for diffs], Mon Mar 19 13:27:47 2007 UTC (17 years, 2 months ago) by pedro
Branch: MAIN
Changes since 1.31: +5 -4 lines
Diff to previous 1.31 (colored)

Add FFS2 fields to the superblock, change file system tools to keep
accessing FFS1 fields, okay art@, quite some testing by ckuethe@, simon@
and thib@, thanks.

Revision 1.31 / (download) - annotate - [select for diffs], Tue Feb 13 20:37:07 2007 UTC (17 years, 3 months ago) by otto
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.30: +10 -2 lines
Diff to previous 1.30 (colored)

"Fix" a horrible signal handler. ckfini() breaks all the rules for
signal handlers, calling free() and not being reentrant. This commit
fixes to most importamt problem (^C on the "MARK FILESYSTEM CLEAN?"
question causes a double free), but actually SIGINT handling should
be completely rewritten.  ok millert@ deraadt@

Revision 1.30 / (download) - annotate - [select for diffs], Mon Apr 17 19:33:54 2006 UTC (18 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.29: +10 -5 lines
Diff to previous 1.29 (colored)

more signal handler cleaning

Revision 1.29 / (download) - annotate - [select for diffs], Mon Apr 17 19:22:29 2006 UTC (18 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.28: +4 -5 lines
Diff to previous 1.28 (colored)

solve half of the signal race issues

Revision 1.28 / (download) - annotate - [select for diffs], Mon Apr 17 19:18:09 2006 UTC (18 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.27: +9 -10 lines
Diff to previous 1.27 (colored)

prettier code; ok pedro

Revision 1.27 / (download) - annotate - [select for diffs], Fri Apr 7 11:25:37 2006 UTC (18 years, 2 months ago) by pedro
Branch: MAIN
Changes since 1.26: +3 -2 lines
Diff to previous 1.26 (colored)

fsck needs to unset FS_FLAGS_UPDATED if it changes the super block

Revision 1.26 / (download) - annotate - [select for diffs], Sun Apr 2 00:48:35 2006 UTC (18 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.25: +8 -8 lines
Diff to previous 1.25 (colored)

use SEEK_* for lseek()

Revision 1.25 / (download) - annotate - [select for diffs], Thu Mar 30 01:16:31 2006 UTC (18 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.24: +8 -4 lines
Diff to previous 1.24 (colored)

when asking y or n, accept "F" which forces yes from the on.  i have
wished for this for 10+ year, but always forgotten to make the change
after cleaning up a nasty file system; ok pedro millert

Revision 1.24 / (download) - annotate - [select for diffs], Wed Mar 22 20:24:32 2006 UTC (18 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.23: +6 -7 lines
Diff to previous 1.23 (colored)

earlier asprintf diff caused malloc in signal handler.  clarify the
code a bit more so that this mistake will not be done again

Revision 1.23 / (download) - annotate - [select for diffs], Mon Mar 20 20:00:05 2006 UTC (18 years, 2 months ago) by dhill
Branch: MAIN
Changes since 1.22: +7 -3 lines
Diff to previous 1.22 (colored)

NetBSD Coverity CID 2074: Fix memory leak.

ok deraadt@

Revision 1.22 / (download) - annotate - [select for diffs], Sun Mar 12 02:28:28 2006 UTC (18 years, 3 months ago) by deraadt
Branch: MAIN
Changes since 1.21: +7 -5 lines
Diff to previous 1.21 (colored)

use asprintf instead of a static buffer; dhill, tested by pedro

Revision 1.21 / (download) - annotate - [select for diffs], Wed Jan 25 06:25:46 2006 UTC (18 years, 4 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.20: +3 -3 lines
Diff to previous 1.20 (colored)

spell fall through as FALLTHROUGH

Revision 1.20 / (download) - annotate - [select for diffs], Mon Aug 25 23:28:15 2003 UTC (20 years, 9 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6, OPENBSD_3_5_BASE, OPENBSD_3_5, OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.19: +3 -3 lines
Diff to previous 1.19 (colored)

rename struct dinode to ufs1_dinode.  clears the namespace and makes
way for some future work.  no function changes yet.
help testing otto@ and markus@

Revision 1.19 / (download) - annotate - [select for diffs], Mon Jun 2 20:06:15 2003 UTC (21 years ago) by millert
Branch: MAIN
Changes since 1.18: +3 -7 lines
Diff to previous 1.18 (colored)

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

Revision 1.18 / (download) - annotate - [select for diffs], Sat Apr 26 00:39:28 2003 UTC (21 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.17: +5 -5 lines
Diff to previous 1.17 (colored)

string cleaning; ok tedu

Revision 1.17 / (download) - annotate - [select for diffs], Fri Aug 23 09:09:04 2002 UTC (21 years, 9 months ago) by gluk
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.16: +22 -54 lines
Diff to previous 1.16 (colored)

- Convert function definitions to new style
- eliminate trailing whitespace
- remove casts that aren't needed.
- make rcsid strings const, for -Wall compilation.

 from tedu <grendel@zeitbombe.org>

Revision 1.16 / (download) - annotate - [select for diffs], Tue Aug 20 21:57:56 2002 UTC (21 years, 9 months ago) by deraadt
Branch: MAIN
Changes since 1.15: +7 -6 lines
Diff to previous 1.15 (colored)

clean some more signal races, some cannot be fixed

Revision 1.15 / (download) - annotate - [select for diffs], Sat Feb 23 21:23:46 2002 UTC (22 years, 3 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.14: +3 -3 lines
Diff to previous 1.14 (colored)

getc() returns an int

Revision 1.14 / (download) - annotate - [select for diffs], Sat Feb 16 21:27:34 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
Changes since 1.13: +3 -3 lines
Diff to previous 1.13 (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.13 / (download) - annotate - [select for diffs], Mon Nov 5 07:39:16 2001 UTC (22 years, 7 months ago) by mpech
Branch: MAIN
Changes since 1.12: +10 -10 lines
Diff to previous 1.12 (colored)

kill more registers;

millert@ ok

Revision 1.12 / (download) - annotate - [select for diffs], Fri Apr 13 02:39:05 2001 UTC (23 years, 2 months ago) by gluk
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0, OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.11: +3 -3 lines
Diff to previous 1.11 (colored)

Fix overflow in superblock. From FreeBSD.

FreeBSD's log:
> The ffs superblock includes a 128-byte region for use by temporary
> in-core pointers to summary information. An array in this region
> (fs_csp) could overflow on filesystems with a very large number of
> cylinder groups (~16000 on i386 with 8k blocks). When this happens,
> other fields in the superblock get corrupted, and fsck refuses to
> check the filesystem.
>
> Solve this problem by replacing the fs_csp array in 'struct fs'
> with a single pointer, and add padding to keep the length of the
> 128-byte region fixed. Update the kernel and userland utilities
> to use just this single pointer.
>
> With this change, the kernel no longer makes use of the superblock
> fields 'fs_csshift' and 'fs_csmask'. Add a comment to newfs/mkfs.c
> to indicate that these fields must be calculated for compatibility
> with older kernels.

art@ ok.

Revision 1.11 / (download) - annotate - [select for diffs], Fri Mar 2 08:33:55 2001 UTC (23 years, 3 months ago) by art
Branch: MAIN
Changes since 1.10: +24 -6 lines
Diff to previous 1.10 (colored)

Make fsck aware of soft updates.
We had this in the tree 1997, but it went away because it was too close to
release.
Ok: csapuntz@
(as a size note: It's really good to test fsck when you are torture testing
the filesystems)

Revision 1.10 / (download) - annotate - [select for diffs], Fri Jan 19 17:57:36 2001 UTC (23 years, 4 months ago) by deraadt
Branch: MAIN
Changes since 1.9: +5 -2 lines
Diff to previous 1.9 (colored)

mark signal races i cannot fix at the moment

Revision 1.9 / (download) - annotate - [select for diffs], Mon Jan 15 19:52:37 2001 UTC (23 years, 4 months ago) by deraadt
Branch: MAIN
Changes since 1.8: +5 -2 lines
Diff to previous 1.8 (colored)

save_errno in signal handler

Revision 1.8 / (download) - annotate - [select for diffs], Sat Sep 30 16:06:34 2000 UTC (23 years, 8 months ago) by aaron
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.7: +3 -3 lines
Diff to previous 1.7 (colored)

Some format string problems that were missed during initial audit; deraadt@ and
millert@ ok

Revision 1.7 / (download) - annotate - [select for diffs], Mon Mar 1 07:45:18 1999 UTC (25 years, 3 months ago) by d
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE, OPENBSD_2_7, OPENBSD_2_6_BASE, OPENBSD_2_6, OPENBSD_2_5_BASE, OPENBSD_2_5
Changes since 1.6: +37 -3 lines
Diff to previous 1.6 (colored)

SIGINFO support

Revision 1.6 / (download) - annotate - [select for diffs], Mon Oct 6 20:22:37 1997 UTC (26 years, 8 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_4_BASE, OPENBSD_2_4, OPENBSD_2_3_BASE, OPENBSD_2_3, OPENBSD_2_2_BASE, OPENBSD_2_2
Changes since 1.5: +4 -22 lines
Diff to previous 1.5 (colored)

back out vfs lite2 till after 2.2

Revision 1.5 / (download) - annotate - [select for diffs], Mon Oct 6 15:33:36 1997 UTC (26 years, 8 months ago) by csapuntz
Branch: MAIN
Changes since 1.4: +24 -6 lines
Diff to previous 1.4 (colored)

VFS Lite2 Changes

Revision 1.4 / (download) - annotate - [select for diffs], Wed Jun 25 18:12:17 1997 UTC (26 years, 11 months ago) by kstailey
Branch: MAIN
Changes since 1.3: +4 -4 lines
Diff to previous 1.3 (colored)

(foo *)0 -> NULL

Revision 1.3 / (download) - annotate - [select for diffs], Sun Oct 20 08:36:42 1996 UTC (27 years, 7 months ago) by tholo
Branch: MAIN
CVS Tags: OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.2: +14 -66 lines
Diff to previous 1.2 (colored)

Sync with NetBSD 961019

Revision 1.2 / (download) - annotate - [select for diffs], Sun Jun 23 14:30:35 1996 UTC (27 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.1: +2 -1 lines
Diff to previous 1.1 (colored)

update rcsid

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 18 08:43: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:43: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.