OpenBSD CVS

CVS log for src/usr.bin/jot/jot.c


[BACK] Up to [local] / src / usr.bin / jot

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.56 / (download) - annotate - [select for diffs], Fri Aug 13 12:37:28 2021 UTC (2 years, 9 months ago) by jmc
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, HEAD
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored)

update usage() to reflect s->step change;

Revision 1.55 / (download) - annotate - [select for diffs], Fri Aug 13 11:27:33 2021 UTC (2 years, 9 months ago) by martijn
Branch: MAIN
Changes since 1.54: +7 -1 lines
Diff to previous 1.54 (colored)

Make -b, -c, and -b mutually exclusive.

Help/Feedback/OK schwarze@, tb@

Revision 1.54 / (download) - annotate - [select for diffs], Fri Aug 13 10:45:26 2021 UTC (2 years, 9 months ago) by tb
Branch: MAIN
Changes since 1.53: +2 -4 lines
Diff to previous 1.53 (colored)

Simplify an if clause using De Morgan's law.

Using the fact that since r1.53 prec is always non-negative and that
r1.50 added an initialization of use_unif, we can eliminate a couple
of lines and make the intention clearer.

ok martijn

Revision 1.53 / (download) - annotate - [select for diffs], Fri Aug 13 10:40:23 2021 UTC (2 years, 9 months ago) by tb
Branch: MAIN
Changes since 1.52: +3 -3 lines
Diff to previous 1.52 (colored)

Make sure prec is non-negative before calling getformat()

If jot is called without arguments, getformat() produces the illegal
"%.-1f" format string. __vfprintf() misinterprets the - as a left
adjust flag and uses a precision of 0. Set prec = 0 so that we use
"%.0f" in this situation.

ok martijn

Revision 1.52 / (download) - annotate - [select for diffs], Fri Aug 13 07:56:34 2021 UTC (2 years, 9 months ago) by martijn
Branch: MAIN
Changes since 1.51: +9 -13 lines
Diff to previous 1.51 (colored)

Apply de Morgan's rule to shave of 4 LoC.

OK tb@

Revision 1.51 / (download) - annotate - [select for diffs], Fri Jul 30 02:47:37 2021 UTC (2 years, 9 months ago) by tb
Branch: MAIN
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored)

whitespace

Revision 1.50 / (download) - annotate - [select for diffs], Fri Jul 30 02:46:53 2021 UTC (2 years, 9 months ago) by tb
Branch: MAIN
Changes since 1.49: +12 -11 lines
Diff to previous 1.49 (colored)

Do bounds check before assignment

As reported by alf (alf.schlichting lemarit com) on bugs@, a bounds check
didn't trigger because it was performed after assignment, so truncation
would happen for large ranges. Fix this and clean up and simplify the code
a bit.

ok deraadt millert

Revision 1.49 / (download) - annotate - [select for diffs], Thu Jun 27 18:03:36 2019 UTC (4 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: 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
Changes since 1.48: +5 -5 lines
Diff to previous 1.48 (colored)

Some asprintf() calls were checked < 0, rather than the precise == -1.
ok millert nicm tb, etc

Revision 1.48 / (download) - annotate - [select for diffs], Wed Aug 1 13:35:33 2018 UTC (5 years, 9 months ago) by tb
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.47: +2 -2 lines
Diff to previous 1.47 (colored)

Use a single space after colon in another errx().

Pointed out by Kris Katterjohn

Revision 1.47 / (download) - annotate - [select for diffs], Wed Aug 1 13:13:53 2018 UTC (5 years, 9 months ago) by cheloha
Branch: MAIN
Changes since 1.46: +5 -3 lines
Diff to previous 1.46 (colored)

Disallow negative reps, they make no sense. While here, sscanf -> strtonum.

From Kris Katterjohn on tech@.

ok tb@

Revision 1.46 / (download) - annotate - [select for diffs], Sun Jun 24 18:39:57 2018 UTC (5 years, 10 months ago) by schwarze
Branch: MAIN
Changes since 1.45: +1 -3 lines
Diff to previous 1.45 (colored)

Fix a quirk noticed by espie@: let "jot" without any argument do the
same as "jot -", to match the description in the manual page.
Very similar patch independently developed by tb@.
OK tb@ espie@

Revision 1.45 / (download) - annotate - [select for diffs], Sat Jan 13 15:43:39 2018 UTC (6 years, 4 months ago) by tb
Branch: MAIN
CVS Tags: OPENBSD_6_3_BASE, OPENBSD_6_3
Changes since 1.44: +2 -2 lines
Diff to previous 1.44 (colored)

Adjust comment to reflect '%F' addition.

Revision 1.44 / (download) - annotate - [select for diffs], Sat Jan 13 15:09:49 2018 UTC (6 years, 4 months ago) by tb
Branch: MAIN
Changes since 1.43: +2 -1 lines
Diff to previous 1.43 (colored)

Allow printf '%F' format specifier.

ok millert

Revision 1.43 / (download) - annotate - [select for diffs], Fri Jan 12 06:22:31 2018 UTC (6 years, 4 months ago) by tb
Branch: MAIN
Changes since 1.42: +32 -29 lines
Diff to previous 1.42 (colored)

Align cases in conversion switch vertically. Normalize logic inside cases
and drop an unnecessary test for intdata in '%c'.

reads ok to halex, ok millert

Revision 1.42 / (download) - annotate - [select for diffs], Thu Jan 11 14:53:42 2018 UTC (6 years, 4 months ago) by tb
Branch: MAIN
Changes since 1.41: +40 -55 lines
Diff to previous 1.41 (colored)

Remove arbitary length limits for -s, -b and -w. Based on a diff from kshe.
schwarze suggested using asprintf, which led to a substantial cleanup.

ok schwarze, help & ok millert

Revision 1.41 / (download) - annotate - [select for diffs], Sat Dec 30 07:21:10 2017 UTC (6 years, 4 months ago) by tb
Branch: MAIN
Changes since 1.40: +1 -4 lines
Diff to previous 1.40 (colored)

Simplify switch by removing some unneeded cases.

from kshe

Revision 1.40 / (download) - annotate - [select for diffs], Sat Dec 30 07:19:05 2017 UTC (6 years, 4 months ago) by tb
Branch: MAIN
Changes since 1.39: +4 -4 lines
Diff to previous 1.39 (colored)

Avoid one-byte overflow in error path. If the format string ends in an
invalid specifier like `%l', p will already point to the trailing NUL
upon entering the switch, wherein the instruction

	*++p = '\0';

will write another NUL after it, but there is no guarantee that the
buffer extends beyond that first NUL; thus, in the rare case where it
does not, this assignment will write one byte past its end.

from kshe

Revision 1.39 / (download) - annotate - [select for diffs], Fri Dec 15 14:20:52 2017 UTC (6 years, 5 months ago) by tb
Branch: MAIN
Changes since 1.38: +7 -5 lines
Diff to previous 1.38 (colored)

Use the canonical idiom to check strlcat(3). An unchecked strlcat call
led to unexpected output: compare 'jot -w $(printf %1020s)%d%' 1 1'
with 'jot -w $(printf %1019s)%d%' 1 1'.

found by & ok martijn

Revision 1.38 / (download) - annotate - [select for diffs], Fri Dec 15 13:04:11 2017 UTC (6 years, 5 months ago) by tb
Branch: MAIN
Changes since 1.37: +4 -1 lines
Diff to previous 1.37 (colored)

Instead of pointlessly falling through other cases and ending up doing
goto fmt_broken, do it explicitly. Makes following the code path through
the switch a bit easier.

Prompted by a request by martijn

Revision 1.37 / (download) - annotate - [select for diffs], Fri Dec 15 12:17:49 2017 UTC (6 years, 5 months ago) by tb
Branch: MAIN
Changes since 1.36: +5 -1 lines
Diff to previous 1.36 (colored)

Make sure the double is cast to a long if the format string is %D, %O, %U.
Fixes output of e.g. 'jot -w %D 11 -5'.

ok martijn

Revision 1.36 / (download) - annotate - [select for diffs], Fri Sep 2 14:23:09 2016 UTC (7 years, 8 months ago) by tb
Branch: MAIN
CVS Tags: OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1
Changes since 1.35: +45 -49 lines
Diff to previous 1.35 (colored)

style cleanup: sort headers; group and sort variables; no parens for
return; sort getopt string and corresponding switch; and some more
tedious stuff

ok martijn

Revision 1.35 / (download) - annotate - [select for diffs], Tue Aug 16 16:49:24 2016 UTC (7 years, 9 months ago) by tb
Branch: MAIN
Changes since 1.34: +16 -14 lines
Diff to previous 1.34 (colored)

Streamline and refactor the code a bit more:

There are two sentinels for infinite output: infinity == true and reps == 0.
Ensure that infinity is set to true whenever reps is set to zero, then we
can always use 'if (infinity)'.

This allows us to merge the loop for deterministic output into the first
if (!randomize) statement, which is a lot tidier.

Insert an occasional empty line.

"move fast and break stuff" tedu

Revision 1.34 / (download) - annotate - [select for diffs], Fri Aug 12 23:29:59 2016 UTC (7 years, 9 months ago) by tb
Branch: MAIN
Changes since 1.33: +2 -11 lines
Diff to previous 1.33 (colored)

Simplify getprec() by using strchr(3) and strspn(3).
Part of NetBSD's jot r1.20 by dsl.

ok jca

Revision 1.33 / (download) - annotate - [select for diffs], Fri Aug 12 21:31:11 2016 UTC (7 years, 9 months ago) by tb
Branch: MAIN
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored)

usage() is __dead

Revision 1.32 / (download) - annotate - [select for diffs], Fri Aug 12 21:17:41 2016 UTC (7 years, 9 months ago) by tb
Branch: MAIN
Changes since 1.31: +73 -95 lines
Diff to previous 1.31 (colored)

The last four argumens of jot (reps, begin, end, step) can all be
specified or omitted, yielding 16 possible combinations, plus
a few special cases.

Instead of hardcoded values, use names to make the bit patterns
that indicate which values were specified human readable. Decide
once and for all what to do in a single switch statement. Don't
enter said switch when random output is requested since that
simply makes no sense at all.

While there, make the error messages a bit more meaningful and
fix a bogus value assigned to begin for jot -r x - y z that has
been there since -r1.1. All regression tests now pass.

Inspired by David Laight (dsl)'s r1.21 of NetBSD's jot.

"move fast and break stuff" tedu
agreement from deraadt

Revision 1.31 / (download) - annotate - [select for diffs], Fri Aug 5 13:43:38 2016 UTC (7 years, 9 months ago) by tb
Branch: MAIN
Changes since 1.30: +3 -3 lines
Diff to previous 1.30 (colored)

If reps and steps were omitted, while begin and end were specified,
use a default step size of +1 or -1.  Fixes the last two failing
regression tests dhhd and dhhd2.  Adapted from FreeBSD.

'good direction' deraadt

Revision 1.30 / (download) - annotate - [select for diffs], Fri Aug 5 13:33:21 2016 UTC (7 years, 9 months ago) by tb
Branch: MAIN
Changes since 1.29: +5 -2 lines
Diff to previous 1.29 (colored)

If "%%" appears in the format string, skip it properly.

Part of pjanzen's fixes in r1.8, but was lost in r1.17.
Fixes regression tests wp3, wp4, wp5.

'good direction' deraadt

Revision 1.29 / (download) - annotate - [select for diffs], Fri Aug 5 13:21:31 2016 UTC (7 years, 9 months ago) by tb
Branch: MAIN
Changes since 1.28: +5 -5 lines
Diff to previous 1.28 (colored)

Initialize reps, begin, end, steps to their defaults.

Makes jot - - - - behave the same way as jot -, jot - - and jot - - -
instead of spurting out zeroes indefinitely.
Fixes the dddd regression test and matches FreeBSD and NetBSD.

From attila () stalphonsos ! com, thanks!
'good direction' deraadt

Revision 1.28 / (download) - annotate - [select for diffs], Sun Jul 17 04:04:46 2016 UTC (7 years, 10 months ago) by tb
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.27: +17 -14 lines
Diff to previous 1.27 (colored)

1. Update manpage in view of the change of behavior I introduced in -r1.27.

The bounds are taken inclusive and -w %d doesn't change the output of
integer random sequences anymore.  This is the same behavior as that
of Linux and NetBSD, but differs from FreeBSD and OS X.

Issue reported by Philippe Meunier on misc@.

2 Fix a bug from the same commit observed by Otto: if the precision is 0,
values may be printed out of bounds.  Fall back to the old behavior if at
least one bound isn't an integer.

General agreement expressed by otto@, tedu@, jmc@, sobrado@
Help with checking other operating systems by sobrado@.

Manpage ok jmc@.
Bugfix discussed with otto@ on icb

Revision 1.27 / (download) - annotate - [select for diffs], Sun Jan 10 01:15:52 2016 UTC (8 years, 4 months ago) by tb
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.26: +40 -4 lines
Diff to previous 1.26 (colored)

Random sequences generated by jot -r have been suffering from a dramatic
bias at both ends of the given interval.  Various clever workarounds are
documented in the manual.

This fixes the bias in some of the most common use cases, namely random
sequences of integers or real numbers rounded to a fixed number of
decimals.  So, `jot -p 3 -r 10000 0 1' produces a uniformly distributed
sequence of 10,000 decimal numbers of the form 0.abc (or 1).

Internally, jot -r now uses arc4random_uniform() whenever this is
clearly possible.  In particular `jot -r 1 10 20' yields an unbiased
random number between 10 and 20 (both ends inclusive) from the shell.

guidance and ok deraadt@, "i like it" benno@

Revision 1.26 / (download) - annotate - [select for diffs], Fri Oct 9 01:37:07 2015 UTC (8 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.25: +3 -3 lines
Diff to previous 1.25 (colored)

Change all tame callers to namechange to pledge(2).

Revision 1.25 / (download) - annotate - [select for diffs], Tue Oct 6 22:55:51 2015 UTC (8 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.24: +4 -1 lines
Diff to previous 1.24 (colored)

obvious tame "stdio"

Revision 1.24 / (download) - annotate - [select for diffs], Tue Jul 21 04:04:06 2015 UTC (8 years, 10 months ago) by jasper
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored)

whitespace

Revision 1.23 / (download) - annotate - [select for diffs], Tue Nov 26 13:21:18 2013 UTC (10 years, 5 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7, OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.22: +4 -4 lines
Diff to previous 1.22 (colored)

unsigned char casts for ctype
ok krw

Revision 1.22 / (download) - annotate - [select for diffs], Fri Nov 15 15:47:53 2013 UTC (10 years, 6 months ago) by millert
Branch: MAIN
Changes since 1.21: +2 -1 lines
Diff to previous 1.21 (colored)

Include unistd.h as it is the standard location for getopt().
From Eitan Adler

Revision 1.21 / (download) - annotate - [select for diffs], Mon Jan 30 14:08:18 2012 UTC (12 years, 3 months ago) by okan
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, OPENBSD_5_1_BASE, OPENBSD_5_1
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

typo in error message; ok krw@

Revision 1.20 / (download) - annotate - [select for diffs], Tue Oct 27 23:59:39 2009 UTC (14 years, 6 months ago) by deraadt
Branch: MAIN
CVS Tags: 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.19: +1 -14 lines
Diff to previous 1.19 (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.19 / (download) - annotate - [select for diffs], Tue May 1 01:26:30 2007 UTC (17 years ago) by jdixon
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, OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.18: +7 -5 lines
Diff to previous 1.18 (colored)

use strtonum; ok millert@

Revision 1.18 / (download) - annotate - [select for diffs], Mon Apr 11 16:31:20 2005 UTC (19 years, 1 month 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, OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.17: +6 -3 lines
Diff to previous 1.17 (colored)

handle -1 potential case from snprintf too

Revision 1.17 / (download) - annotate - [select for diffs], Thu Jan 8 18:50:02 2004 UTC (20 years, 4 months ago) by otto
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.16: +108 -43 lines
Diff to previous 1.16 (colored)

Pass the right type based on the conversion specified; warn on conversion
errors. Mostly from FreeBSD.

Revision 1.16 / (download) - annotate - [select for diffs], Tue Dec 30 19:41:48 2003 UTC (20 years, 4 months ago) by otto
Branch: MAIN
Changes since 1.15: +8 -9 lines
Diff to previous 1.15 (colored)

o From FreeBSD: use the max_value(u_int32_t) + 1 to divide the random number.
o Document and warn that seeding the random generator is no longer supported
  since arc4random is used as the RG.

ok jose@ millert@

Revision 1.15 / (download) - annotate - [select for diffs], Mon Dec 29 08:51:19 2003 UTC (20 years, 4 months ago) by otto
Branch: MAIN
Changes since 1.14: +66 -67 lines
Diff to previous 1.14 (colored)

Cleanup: KNF, -Wall, do not use pointers if the actual var is
available, plus some other minor cleanup.
New features: Allow explicit precision 0. For infinite sequences,
do not print trailing newline if the counter wraps.

Testing by henning@ and jmc@

ok deraadt@

Revision 1.14 / (download) - annotate - [select for diffs], Mon Dec 15 23:24:20 2003 UTC (20 years, 5 months ago) by jmc
Branch: MAIN
Changes since 1.13: +5 -4 lines
Diff to previous 1.13 (colored)

jot.1:
- use .Bk/.Ek for SYNOPSIS
- sort options
- better -width for options list
- reword examples to make them clearer
- fix broken example, as reported by Takanori Isihara

jot.c:
- sync usage() with SYNOPSIS

Revision 1.13 / (download) - annotate - [select for diffs], Tue Jun 10 22:20:47 2003 UTC (20 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.12: +6 -11 lines
Diff to previous 1.12 (colored)

mostly ansi cleanup; pval ok

Revision 1.12 / (download) - annotate - [select for diffs], Tue Jun 3 02:56:09 2003 UTC (20 years, 11 months ago) by millert
Branch: MAIN
Changes since 1.11: +3 -7 lines
Diff to previous 1.11 (colored)

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

Revision 1.11 / (download) - annotate - [select for diffs], Sun Jan 12 02:45:28 2003 UTC (21 years, 4 months ago) by beck
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.10: +3 -3 lines
Diff to previous 1.10 (colored)

Make this work on 64 bit arch's
ok millert@

Revision 1.10 / (download) - annotate - [select for diffs], Wed May 29 18:33:38 2002 UTC (21 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.9: +3 -3 lines
Diff to previous 1.9 (colored)

strlcat

Revision 1.9 / (download) - annotate - [select for diffs], Sat Feb 16 21:27:47 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.8: +7 -7 lines
Diff to previous 1.8 (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.8 / (download) - annotate - [select for diffs], Thu Mar 8 01:39:17 2001 UTC (23 years, 2 months ago) by pjanzen
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0, OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.7: +100 -97 lines
Diff to previous 1.7 (colored)

de-register, use getopt(), prevent a few terribly unlikely buffer
overflows, improve a few error messages, and avoid a bundle of faults
involving the -w option.

Revision 1.7 / (download) - annotate - [select for diffs], Thu Dec 21 15:34:51 2000 UTC (23 years, 5 months ago) by aaron
Branch: MAIN
Changes since 1.6: +31 -45 lines
Diff to previous 1.6 (colored)

- Get rid of local error() function and instead use err(3).
- Add a standard usage() function.

Revision 1.6 / (download) - annotate - [select for diffs], Thu Dec 21 15:11:29 2000 UTC (23 years, 5 months ago) by aaron
Branch: MAIN
Changes since 1.5: +8 -7 lines
Diff to previous 1.5 (colored)

Use arc4random().

Revision 1.5 / (download) - annotate - [select for diffs], Fri Jul 14 07:16:12 2000 UTC (23 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.4: +10 -8 lines
Diff to previous 1.4 (colored)

previous two patches mixed up if/else matching

Revision 1.4 / (download) - annotate - [select for diffs], Sat Dec 4 21:28:34 1999 UTC (24 years, 5 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.3: +8 -4 lines
Diff to previous 1.3 (colored)

more oflows

Revision 1.3 / (download) - annotate - [select for diffs], Sat Dec 4 21:27:02 1999 UTC (24 years, 5 months ago) by deraadt
Branch: MAIN
Changes since 1.2: +8 -4 lines
Diff to previous 1.2 (colored)

oflows

Revision 1.2 / (download) - annotate - [select for diffs], Wed Jun 26 05:34:41 1996 UTC (27 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6, OPENBSD_2_5_BASE, OPENBSD_2_5, OPENBSD_2_4_BASE, OPENBSD_2_4, OPENBSD_2_3_BASE, OPENBSD_2_3, OPENBSD_2_2_BASE, OPENBSD_2_2, OPENBSD_2_1_BASE, OPENBSD_2_1, OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.1: +2 -1 lines
Diff to previous 1.1 (colored)

rcsid

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