OpenBSD CVS

CVS log for src/usr.sbin/config/main.c


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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.63 / (download) - annotate - [select for diffs], Sat Nov 20 03:13:37 2021 UTC (2 years, 6 months ago) by jcs
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, HEAD
Changes since 1.62: +8 -2 lines
Diff to previous 1.62 (colored)

When cmdfile is specified, use lines from it for all input, not just
commands.  This allows complex actions like changing device
parameters to be done with a command file.

Revision 1.62 / (download) - annotate - [select for diffs], Tue Jan 26 18:23:49 2021 UTC (3 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9
Changes since 1.61: +40 -1 lines
Diff to previous 1.61 (colored)

satisfy -fno-common, by (1) copying all the variable decls from
indent_globs.h to indent.c, and (2) changing all the same decls in
indent_globs.h to be extern
ok mortimer

Revision 1.61 / (download) - annotate - [select for diffs], Fri Jul 19 20:40:44 2019 UTC (4 years, 10 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8, OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6
Changes since 1.60: +2 -2 lines
Diff to previous 1.60 (colored)

In the synopsis, put options that take no arguments before those that do.
This also makes it easier to find the crucial difference between the
two synopses, which is the "-e".
Suggested by kn@; OK jmc@.

Revision 1.60 / (download) - annotate - [select for diffs], Tue May 14 13:44:25 2019 UTC (5 years ago) by tedu
Branch: MAIN
Changes since 1.59: +7 -4 lines
Diff to previous 1.59 (colored)

allow specifying a cmdfile instead of trying to pipe in commands for -ef.
ok deraadt

Revision 1.59 / (download) - annotate - [select for diffs], Thu Jun 22 15:57:16 2017 UTC (6 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.58: +1 -2 lines
Diff to previous 1.58 (colored)

Generate the newbsd: and install-update: targets here, rather than
in the source Makefile.* files.
ok tb rpe mlarkin

Revision 1.58 / (download) - annotate - [select for diffs], Mon Jun 19 17:35:04 2017 UTC (6 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.57: +1 -2 lines
Diff to previous 1.57 (colored)

delete accidental blank line

Revision 1.57 / (download) - annotate - [select for diffs], Sun Oct 16 18:02:03 2016 UTC (7 years, 7 months ago) by tb
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.56: +3 -2 lines
Diff to previous 1.56 (colored)

Add a == EOF that was accidentally lost in previous commit.

Revision 1.56 / (download) - annotate - [select for diffs], Sun Oct 16 17:50:00 2016 UTC (7 years, 7 months ago) by tb
Branch: MAIN
Changes since 1.55: +22 -45 lines
Diff to previous 1.55 (colored)

Use the err(3) family of functions more consistently.

ok jca, improvements and ok millert, natano

Revision 1.55 / (download) - annotate - [select for diffs], Sun Oct 16 09:36:46 2016 UTC (7 years, 7 months ago) by natano
Branch: MAIN
Changes since 1.54: +2 -14 lines
Diff to previous 1.54 (colored)

Remove the -g option. It is obsolete/undocumented since the initial
import from NetBSD in '95 and does nothing except print an error.

ok tb

Revision 1.54 / (download) - annotate - [select for diffs], Sun Oct 16 09:19:15 2016 UTC (7 years, 7 months ago) by natano
Branch: MAIN
Changes since 1.53: +1 -4 lines
Diff to previous 1.53 (colored)

Remove declarations for optarg and optind. They are declared in <unistd.h>.
ok tb

Revision 1.53 / (download) - annotate - [select for diffs], Sun Oct 16 08:47:17 2016 UTC (7 years, 7 months ago) by natano
Branch: MAIN
Changes since 1.52: +3 -6 lines
Diff to previous 1.52 (colored)

Stop complaining about changed kernel options when called for an empty
directory. With the new kernel obj mechanism config always prints

	Kernel options have changed -- you must run "make clean"

on the first run. The message is suppressed when the compile directory
didn't exist before, but now the directory always exists when config is
run, so we have to use something else to detect if this is a "fresh" run
or an update of an existing directory. Use the options file instead,
which is used to track the kernel options of the last config run. If the
file doesn't exist, it is safe to assume, that this is a "fresh"
directory.

ok tb deraadt

Revision 1.52 / (download) - annotate - [select for diffs], Fri Oct 14 18:51:04 2016 UTC (7 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.51: +30 -2 lines
Diff to previous 1.51 (colored)

Change the default non -b behaviour of config(8) to operate with the
new compile behaviour:
- create a Makefile including ../Makefile.inc
- run "make obj" to create the obj directory
- run "make config", to use logic in ../Makefile.inc to re-run config
  with the correct -b options, thereby creating a layout in obj/
- exit 0.
As a result, the old patterns our fingers are used to continue to work
and there will be fewer curses.
ok natano tb

Revision 1.51 / (download) - annotate - [select for diffs], Mon Sep 12 14:33:12 2016 UTC (7 years, 8 months ago) by akfaew
Branch: MAIN
Changes since 1.50: +5 -7 lines
Diff to previous 1.50 (colored)

strlen + emalloc + snprintf = asprintf

ok deraadt@ tb@

Revision 1.50 / (download) - annotate - [select for diffs], Fri Oct 16 13:37:44 2015 UTC (8 years, 7 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.49: +2 -2 lines
Diff to previous 1.49 (colored)

Implement real "flock" request and add it to userland programs that
use pledge and file locking.  OK deraadt@

Revision 1.49 / (download) - annotate - [select for diffs], Mon Oct 12 15:56:58 2015 UTC (8 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.48: +4 -1 lines
Diff to previous 1.48 (colored)

pledge "stdio rpath wpath cpath"; all the path options are used
until the bitter end.

Revision 1.48 / (download) - annotate - [select for diffs], Fri Jan 16 06:40:16 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.47: +3 -3 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], Sun May 18 09:29:54 2014 UTC (10 years ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.46: +2 -2 lines
Diff to previous 1.46 (colored)

use reallocarray and friends. okay miod@

Revision 1.46 / (download) - annotate - [select for diffs], Sat Nov 23 17:38:15 2013 UTC (10 years, 6 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.45: +7 -4 lines
Diff to previous 1.45 (colored)

unsigned char casts for ctype
ok jca

Revision 1.45 / (download) - annotate - [select for diffs], Tue Oct 29 15:37:56 2013 UTC (10 years, 7 months ago) by espie
Branch: MAIN
Changes since 1.44: +18 -2 lines
Diff to previous 1.44 (colored)

emit an extra "config" convenience target that allows one
to rerun config without changing directories.

Lots of inputs by deraadt@, who wanted it to work for movable
relative directories.

Revision 1.44 / (download) - annotate - [select for diffs], Fri Jun 22 22:02:29 2012 UTC (11 years, 11 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2
Changes since 1.43: +20 -12 lines
Diff to previous 1.43 (colored)

Improve error messages when removing/recreating symlinks in the build dir

ok deraadt@

Revision 1.43 / (download) - annotate - [select for diffs], Sun Oct 2 22:20:49 2011 UTC (12 years, 8 months ago) by edd
Branch: MAIN
CVS Tags: OPENBSD_5_1_BASE, OPENBSD_5_1
Changes since 1.42: +4 -2 lines
Diff to previous 1.42 (colored)

Fix some minor things in config(8):
 * As haesbaert suggests, correctly order include files.
 * Found some old style function defs. Updated.
 * Found a prototype inside a function. Moved.

OK nicm@

Revision 1.42 / (download) - annotate - [select for diffs], Fri Apr 15 02:48:14 2011 UTC (13 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_0_BASE, OPENBSD_5_0
Changes since 1.41: +1 -2 lines
Diff to previous 1.41 (colored)

do not need the run "make depend" reminder anymore

Revision 1.41 / (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_4_9_BASE, OPENBSD_4_9, OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7
Changes since 1.40: +1 -7 lines
Diff to previous 1.40 (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.40 / (download) - annotate - [select for diffs], Fri Oct 3 13:01:26 2008 UTC (15 years, 8 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

correct comment; a part of PR4184

Revision 1.39 / (download) - annotate - [select for diffs], Tue Mar 20 19:42:14 2007 UTC (17 years, 2 months ago) by jmc
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.38: +6 -4 lines
Diff to previous 1.38 (colored)

make synopsis/usage() a little nicer;

Revision 1.38 / (download) - annotate - [select for diffs], Sat Nov 12 15:40:09 2005 UTC (18 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0, OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored)

spacing

Revision 1.37 / (download) - annotate - [select for diffs], Thu Apr 28 22:28:00 2005 UTC (19 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.36: +5 -2 lines
Diff to previous 1.36 (colored)

if running in -e mode, and stdin is not a tty, then re-print the commands
that are read.  This makes this more easily to script.
Note:  sparc needs a new config(8) installed before attempting to build
a new release because of stuff in src/etc/etc.sparc/Makefile.inc

Revision 1.36 / (download) - annotate - [select for diffs], Sun Jan 4 18:30:05 2004 UTC (20 years, 5 months ago) by deraadt
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.35: +4 -4 lines
Diff to previous 1.35 (colored)

knf and lint

Revision 1.35 / (download) - annotate - [select for diffs], Sun Jan 4 00:47:01 2004 UTC (20 years, 5 months ago) by deraadt
Branch: MAIN
Changes since 1.34: +2 -1 lines
Diff to previous 1.34 (colored)

Wall and spacing, I am hunting bugs

Revision 1.34 / (download) - annotate - [select for diffs], Mon Dec 29 05:26:11 2003 UTC (20 years, 5 months ago) by deraadt
Branch: MAIN
Changes since 1.33: +12 -11 lines
Diff to previous 1.33 (colored)

similar to pr 3614, but simplified diff. reduce 500-byte limit on identifiers;
originally from Alexander.Farber@t-online.de

Revision 1.33 / (download) - annotate - [select for diffs], Fri Sep 26 17:01:14 2003 UTC (20 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.32: +4 -2 lines
Diff to previous 1.32 (colored)

use emalloc and watch for strdup failure

Revision 1.32 / (download) - annotate - [select for diffs], Sat Jun 28 04:55:07 2003 UTC (20 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.31: +21 -37 lines
Diff to previous 1.31 (colored)

ansi & prototype cleanup.  tested in mkr on most arch's.  ok dhartmei

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

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

Revision 1.30 / (download) - annotate - [select for diffs], Fri Mar 28 16:52:21 2003 UTC (21 years, 2 months ago) by millert
Branch: MAIN
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored)

We were malloc()ing one byte more than we needed; Alexander Farber
Closes PR #3168

Revision 1.29 / (download) - annotate - [select for diffs], Fri Sep 6 19:02:06 2002 UTC (21 years, 9 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.28: +2 -1 lines
Diff to previous 1.28 (colored)

; after label:

Revision 1.28 / (download) - annotate - [select for diffs], Sun Jul 14 02:59:41 2002 UTC (21 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.27: +7 -5 lines
Diff to previous 1.27 (colored)

kill sprintf

Revision 1.27 / (download) - annotate - [select for diffs], Fri Jun 14 21:35:01 2002 UTC (21 years, 11 months ago) by todd
Branch: MAIN
Changes since 1.26: +3 -3 lines
Diff to previous 1.26 (colored)

spelling; from Brian Poole <raj@cerias.purdue.edu>

Revision 1.26 / (download) - annotate - [select for diffs], Wed May 29 09:45:39 2002 UTC (22 years ago) by deraadt
Branch: MAIN
Changes since 1.25: +3 -3 lines
Diff to previous 1.25 (colored)

more snprintf

Revision 1.25 / (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.24: +27 -27 lines
Diff to previous 1.24 (colored)

kill more registers.

millert@ ok

Revision 1.24 / (download) - annotate - [select for diffs], Sun Feb 17 19:42:35 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
Changes since 1.23: +3 -3 lines
Diff to previous 1.23 (colored)

Manual cleanup of remaining userland __P use (excluding packages maintained outside the tree)

Revision 1.23 / (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.22: +10 -10 lines
Diff to previous 1.22 (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.22 / (download) - annotate - [select for diffs], Tue Dec 11 23:47:00 2001 UTC (22 years, 6 months ago) by miod
Branch: MAIN
Changes since 1.21: +8 -2 lines
Diff to previous 1.21 (colored)

Make Makefile.boot produce a working config(8) again, at least on 4.4BSD.

Revision 1.21 / (download) - annotate - [select for diffs], Wed Dec 5 10:11:23 2001 UTC (22 years, 6 months ago) by deraadt
Branch: MAIN
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

more free KNF from maja, though this was hard to do

Revision 1.20 / (download) - annotate - [select for diffs], Tue Jan 4 14:23:43 2000 UTC (24 years, 5 months ago) by angelos
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0, OPENBSD_2_9_BASE, OPENBSD_2_9, OPENBSD_2_8_BASE, OPENBSD_2_8, OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.19: +42 -1 lines
Diff to previous 1.19 (colored)

Add rmoption/rmoptions; useful for people who want a slightly
modified version of GENERIC.

Revision 1.19 / (download) - annotate - [select for diffs], Sat Nov 27 03:49:13 1999 UTC (24 years, 6 months ago) by d
Branch: MAIN
Changes since 1.18: +4 -4 lines
Diff to previous 1.18 (colored)

re-enable config without arguments; fix usage

Revision 1.18 / (download) - annotate - [select for diffs], Mon Oct 4 20:00:51 1999 UTC (24 years, 8 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6
Changes since 1.17: +38 -11 lines
Diff to previous 1.17 (colored)

config -e support; ukc from maja@

Revision 1.17 / (download) - annotate - [select for diffs], Mon May 25 09:35:06 1998 UTC (26 years ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5, OPENBSD_2_4_BASE, OPENBSD_2_4
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored)

missing :; tv

Revision 1.16 / (download) - annotate - [select for diffs], Thu Nov 13 08:21:54 1997 UTC (26 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.15: +7 -1 lines
Diff to previous 1.15 (colored)

from mycroft;
Allow options and makeoptions to take an empty string as a value.
Add `object' and `library' keywords to pull in precompiled .o and .a files.
Syntax is like the `file' keyword; e.g.:
object  arch/i386/i386/mumble.o         [mumble] [needs-flag]
Largely from Michael Richardson in PR 3833, with some changes by me.

Revision 1.15 / (download) - annotate - [select for diffs], Sun Jul 6 04:07:09 1997 UTC (26 years, 11 months ago) by downsj
Branch: MAIN
CVS Tags: OPENBSD_2_2_BASE, OPENBSD_2_2
Changes since 1.14: +1 -2 lines
Diff to previous 1.14 (colored)

-Wall happiness

Revision 1.14 / (download) - annotate - [select for diffs], Sun Jul 6 03:54:05 1997 UTC (26 years, 11 months ago) by downsj
Branch: MAIN
Changes since 1.13: +37 -3 lines
Diff to previous 1.13 (colored)

Add defopt support, from NetBSD; thorpej (I think, I don't have the commit
message).

Revision 1.13 / (download) - annotate - [select for diffs], Mon Apr 14 02:24:04 1997 UTC (27 years, 2 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.12: +5 -2 lines
Diff to previous 1.12 (colored)

do not whine about new directories; reported by briggs

Revision 1.12 / (download) - annotate - [select for diffs], Fri Apr 4 19:56:35 1997 UTC (27 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.11: +5 -5 lines
Diff to previous 1.11 (colored)

with small quantities of beer and pizza i produce fewer bugs. really.

Revision 1.11 / (download) - annotate - [select for diffs], Fri Apr 4 19:54:29 1997 UTC (27 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.10: +83 -1 lines
Diff to previous 1.10 (colored)

if the user changes an option, spit out a warning telling them they need
to make clean. i expect i will get compliments for this change, but
i'd really rather receive beer and pizza.

Revision 1.10 / (download) - annotate - [select for diffs], Sat Jan 18 02:24:16 1997 UTC (27 years, 4 months ago) by briggs
Branch: MAIN
Changes since 1.9: +50 -2 lines
Diff to previous 1.9 (colored)

Sync. with current NetBSD--keeping local changes.

Revision 1.9 / (download) - annotate - [select for diffs], Wed Jan 15 23:43:53 1997 UTC (27 years, 4 months ago) by millert
Branch: MAIN
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored)

getopt(3) returns -1 when out of args, not EOF, whee!

Revision 1.8 / (download) - annotate - [select for diffs], Wed Oct 23 22:37:53 1996 UTC (27 years, 7 months ago) by niklas
Branch: MAIN
Changes since 1.7: +40 -43 lines
Diff to previous 1.7 (colored)

Merge of NetBSD 961020.  Includes flexible build/source dir specs

Revision 1.7 / (download) - annotate - [select for diffs], Fri Sep 13 04:25:41 1996 UTC (27 years, 9 months ago) by mickey
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.6: +1 -3 lines
Diff to previous 1.6 (colored)

remove mapartitions default.

Revision 1.6 / (download) - annotate - [select for diffs], Thu Sep 12 07:51:17 1996 UTC (27 years, 9 months ago) by mickey
Branch: MAIN
Changes since 1.5: +3 -1 lines
Diff to previous 1.5 (colored)

set maxpartitions to machine default.
fix shift/reduce conflicts in grammar (i'm ukrainian, not else ;)

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

fix some warnings and errors

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

sync to netbsd 960418

Revision 1.3 / (download) - annotate - [select for diffs], Mon Mar 25 15:55:06 1996 UTC (28 years, 2 months ago) by niklas
Branch: MAIN
Changes since 1.2: +3 -1 lines
Diff to previous 1.2 (colored)

From NetBSD: merge of 960317

Revision 1.2 / (download) - annotate - [select for diffs], Fri Dec 15 18:54:35 1995 UTC (28 years, 6 months ago) by deraadt
Branch: MAIN
Changes since 1.1: +3 -3 lines
Diff to previous 1.1 (colored)

for orphaned devices, print the parent that cannot be found; from banshee@gabriella.resort.com; netbsd pr#1800

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