OpenBSD CVS

CVS log for src/sbin/savecore/savecore.c


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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.66 / (download) - annotate - [select for diffs], Thu May 9 08:35:40 2024 UTC (4 weeks, 2 days ago) by florian
Branch: MAIN
CVS Tags: HEAD
Changes since 1.65: +8 -2 lines
Diff to previous 1.65 (colored)

ctime(3) and ctime_r(3) can fail when timestamps are way off.
Add missing error checks to all calls under sbin/

Input kettenis, millert
OK millert

Revision 1.65 / (download) - annotate - [select for diffs], Sun Dec 4 23:50:47 2022 UTC (18 months ago) by cheloha
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
Changes since 1.64: +1 -2 lines
Diff to previous 1.64 (colored)

userspace: remove vestigial '?' cases from top-level getopt(3) loops

getopt(3) returns '?' when it encounters a flag not present in the in
the optstring or if a flag is missing its option argument.  We can
handle this case with the "default" failure case with no loss of
legibility.  Hence, remove all the redundant "case '?':" lines.

Prompted by dlg@.  With help from dlg@ and millert@.

Link: https://marc.info/?l=openbsd-tech&m=167011979726449&w=2

ok naddy@ millert@ dlg@

Revision 1.64 / (download) - annotate - [select for diffs], Fri Mar 25 16:14:55 2022 UTC (2 years, 2 months ago) by tb
Branch: MAIN
CVS Tags: OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1
Changes since 1.63: +1 -2 lines
Diff to previous 1.63 (colored)

Savecore uses its own private copy of compress, so it should
not include <zlib.h>

discussed with deraadt

Revision 1.63 / (download) - annotate - [select for diffs], Sun Oct 24 21:24:22 2021 UTC (2 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.62: +2 -2 lines
Diff to previous 1.62 (colored)

For open/openat, if the flags parameter does not contain O_CREAT, the
3rd (variadic) mode_t parameter is irrelevant.  Many developers in the past
have passed mode_t (0, 044, 0644, or such), which might lead future people
to copy this broken idiom, and perhaps even believe this parameter has some
meaning or implication or application. Delete them all.
This comes out of a conversation where tb@ noticed that a strange (but
intentional) pledge behaviour is to always knock-out high-bits from
mode_t on a number of system calls as a safety factor, and his bewilderment
that this appeared to be happening against valid modes (at least visually),
but no sorry, they are all irrelevant junk.  They could all be 0xdeafbeef.
ok millert

Revision 1.62 / (download) - annotate - [select for diffs], Fri Jun 28 13:32:46 2019 UTC (4 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: 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
Changes since 1.61: +5 -5 lines
Diff to previous 1.61 (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.61 / (download) - annotate - [select for diffs], Tue Feb 5 02:17:32 2019 UTC (5 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.60: +2 -2 lines
Diff to previous 1.60 (colored)

dev_t is signed to permit passing -1 as an invalid condition, but the
decomposition into major and minor is unsigned, so we should print them
with %u instead of %d.
ok guenther

Revision 1.60 / (download) - annotate - [select for diffs], Wed Dec 5 05:04:12 2018 UTC (5 years, 6 months ago) by yasuoka
Branch: MAIN
Changes since 1.59: +24 -15 lines
Diff to previous 1.59 (colored)

Unbreak "savecore -c".  Also add missing unveil(2) for the raw device.

ok mestre

Revision 1.59 / (download) - annotate - [select for diffs], Fri Sep 28 14:03:14 2018 UTC (5 years, 8 months ago) by mestre
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4
Changes since 1.58: +5 -1 lines
Diff to previous 1.58 (colored)

add missing unveil(2) of an arbitrary kernel (when -N is used), or _PATH_UNIX by
default, with read permissions.

report and fix provided by semarie@
OK deraadt@

Revision 1.58 / (download) - annotate - [select for diffs], Mon Sep 24 21:26:38 2018 UTC (5 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.57: +5 -1 lines
Diff to previous 1.57 (colored)

After opening required descriptors, savecore only plays in one directory
so use unveil(2).

Revision 1.57 / (download) - annotate - [select for diffs], Thu Sep 1 14:12:07 2016 UTC (7 years, 9 months ago) by tedu
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
Changes since 1.56: +5 -3 lines
Diff to previous 1.56 (colored)

make the version symbol a fixed size (512) to reduce the potential for
bad effects when savecore reads beyond it
ok deraadt (and thanks to bluhm for remembering that this happens)

Revision 1.56 / (download) - annotate - [select for diffs], Mon Jul 4 04:05:29 2016 UTC (7 years, 11 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.55: +2 -4 lines
Diff to previous 1.55 (colored)

Drop support for the undocumented second argument (same as -N option)

ok deraadt@

Revision 1.55 / (download) - annotate - [select for diffs], Sun Oct 18 03:17:48 2015 UTC (8 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.54: +5 -0 lines
Diff to previous 1.54 (colored)

after kmem is open and setup, pledge "stdio rpath wpath cpath"
seems to be working.  commiting to get feedback from people who crash.

Revision 1.54 / (download) - annotate - [select for diffs], Sun Oct 18 03:13:07 2015 UTC (8 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.53: +31 -47 lines
Diff to previous 1.53 (colored)

Collapse some strange programmer style with too much abstraction.

Revision 1.53 / (download) - annotate - [select for diffs], Sun Apr 26 01:23:19 2015 UTC (9 years, 1 month ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.52: +11 -4 lines
Diff to previous 1.52 (colored)

Fix glitches in previous commit: strip the \n and only complain on failure

ok deraadt@

Revision 1.52 / (download) - annotate - [select for diffs], Sat Apr 18 18:28:37 2015 UTC (9 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.51: +15 -6 lines
Diff to previous 1.51 (colored)

Convert many atoi() calls to strtonum(), adding range checks and failure
handling along the way.
Reviews by Brendan MacDonell, Jeremy Devenport, florian, doug, millert

Revision 1.51 / (download) - annotate - [select for diffs], Sun Mar 15 00:41:27 2015 UTC (9 years, 2 months ago) by millert
Branch: MAIN
Changes since 1.50: +3 -3 lines
Diff to previous 1.50 (colored)

tzfile.h is an internal header that should never have been installed.
What's worse, the tzfile.h that gets installed is over 20 years old
and doesn't match the real tzfile.h in libc/time.  This makes the
tree safe for /usr/include/tzfile.h removal.  The TM_YEAR_BASE
define has been moved to time.h temporarily until its usage is
replaced by 1900 in the tree.  Actual removal of tzfile.h is pending
a ports build.  Based on a diff from deraadt@

Revision 1.50 / (download) - annotate - [select for diffs], Fri Jan 16 06:40:00 2015 UTC (9 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.49: +9 -7 lines
Diff to previous 1.49 (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.49 / (download) - annotate - [select for diffs], Mon Jun 3 02:49:42 2013 UTC (11 years ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.48: +8 -8 lines
Diff to previous 1.48 (colored)

dependent clause requires a subject (comment grammar)

Revision 1.48 / (download) - annotate - [select for diffs], Tue Oct 27 23:59:34 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.47: +1 -15 lines
Diff to previous 1.47 (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.47 / (download) - annotate - [select for diffs], Sat Jun 20 00:15:14 2009 UTC (14 years, 11 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_4_6_BASE, OPENBSD_4_6
Changes since 1.46: +3 -4 lines
Diff to previous 1.46 (colored)

If the user didn't specify a kernel, pass in NULL to kvm_openfiles()
so it can try /dev/ksyms.  The first call to kvm_openfiles()
was already correct.

Revision 1.46 / (download) - annotate - [select for diffs], Sat Jan 17 13:48:50 2009 UTC (15 years, 4 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_4_5_BASE, OPENBSD_4_5
Changes since 1.45: +14 -13 lines
Diff to previous 1.45 (colored)

Use different variables for the dump offset in blocks and the dump offset
in bytes; this allows us to get rid of many off_t casts, and ensures
proper operation on very large swap partitions on 32 bit machines.

From Pierre Riteau.

Revision 1.45 / (download) - annotate - [select for diffs], Fri Jan 2 16:17:53 2009 UTC (15 years, 5 months ago) by miod
Branch: MAIN
Changes since 1.44: +8 -7 lines
Diff to previous 1.44 (colored)

Handle kernel core files larger than 2GB; ok dlg@

Revision 1.44 / (download) - annotate - [select for diffs], Fri Sep 14 14:29:20 2007 UTC (16 years, 8 months ago) by chl
Branch: MAIN
CVS Tags: OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.43: +2 -4 lines
Diff to previous 1.43 (colored)

remove some warnings:
unused variable `variable'
`variable' might be used uninitialized in this function

ok gilles@ ray@

Revision 1.43 / (download) - annotate - [select for diffs], Tue Sep 11 15:25:14 2007 UTC (16 years, 9 months ago) by gilles
Branch: MAIN
Changes since 1.42: +5 -8 lines
Diff to previous 1.42 (colored)

use strcspn to properly overwrite '\n' in fgets returned buffer

ok pyr@, ray@, millert@, moritz@, chl@

Revision 1.42 / (download) - annotate - [select for diffs], Fri Jan 7 21:57:10 2005 UTC (19 years, 5 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2, 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, OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.41: +5 -3 lines
Diff to previous 1.41 (colored)

Use fstatfs(), not statfs() to determine free space so if /var/crash
is a link we follow it.  OK deraadt@ jcs@

Revision 1.41 / (download) - annotate - [select for diffs], Wed Sep 15 18:52:29 2004 UTC (19 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.40: +13 -24 lines
Diff to previous 1.40 (colored)

removed unused; avoid aliasing to libc functions

Revision 1.40 / (download) - annotate - [select for diffs], Fri Jul 2 13:09:04 2004 UTC (19 years, 11 months ago) by tholo
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.39: +4 -4 lines
Diff to previous 1.39 (colored)

Use "time_second" instead of "time" now that time handling in the kernel
has changed.

ok art@ millert@ marc@

Revision 1.39 / (download) - annotate - [select for diffs], Tue Jan 13 21:03:34 2004 UTC (20 years, 4 months ago) by otto
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.38: +5 -4 lines
Diff to previous 1.38 (colored)

Use correct type for magic number.

ok marc@ millert@

Revision 1.38 / (download) - annotate - [select for diffs], Sun Dec 28 04:09:13 2003 UTC (20 years, 5 months ago) by espie
Branch: MAIN
Changes since 1.37: +2 -3 lines
Diff to previous 1.37 (colored)

zap bizarre log() prototype.
Doesn't even change the resulting binary (thank Ian Darwin for that idea)

Revision 1.37 / (download) - annotate - [select for diffs], Sat Nov 15 20:25:17 2003 UTC (20 years, 6 months ago) by marc
Branch: MAIN
Changes since 1.36: +3 -3 lines
Diff to previous 1.36 (colored)

fix savecore on big endian 64 bit arches.  OK millert@

Revision 1.36 / (download) - annotate - [select for diffs], Tue Jul 29 18:38:36 2003 UTC (20 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.35: +4 -4 lines
Diff to previous 1.35 (colored)

spaces

Revision 1.35 / (download) - annotate - [select for diffs], Tue Jun 10 16:41:29 2003 UTC (21 years ago) by deraadt
Branch: MAIN
Changes since 1.34: +4 -4 lines
Diff to previous 1.34 (colored)

boring cleanups

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

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

Revision 1.33 / (download) - annotate - [select for diffs], Tue Apr 8 00:12:00 2003 UTC (21 years, 2 months ago) by mickey
Branch: MAIN
Changes since 1.32: +3 -3 lines
Diff to previous 1.32 (colored)

fix null deref in error syslogging

Revision 1.32 / (download) - annotate - [select for diffs], Mon Apr 7 23:04:06 2003 UTC (21 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.31: +5 -4 lines
Diff to previous 1.31 (colored)

strlcat, and it counted srclen, not dstlen; ok millert

Revision 1.31 / (download) - annotate - [select for diffs], Wed Jul 3 22:32:33 2002 UTC (21 years, 11 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.30: +18 -31 lines
Diff to previous 1.30 (colored)

ansi

Revision 1.30 / (download) - annotate - [select for diffs], Wed May 22 20:09:36 2002 UTC (22 years ago) by deraadt
Branch: MAIN
Changes since 1.29: +3 -3 lines
Diff to previous 1.29 (colored)

oops, backwards length check; moritz@jodeit.org

Revision 1.29 / (download) - annotate - [select for diffs], Wed May 22 08:21:02 2002 UTC (22 years ago) by deraadt
Branch: MAIN
Changes since 1.28: +6 -5 lines
Diff to previous 1.28 (colored)

strcpy, sprintf death; mpech ok

Revision 1.28 / (download) - annotate - [select for diffs], Sat Feb 16 21:27:37 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.27: +18 -18 lines
Diff to previous 1.27 (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.27 / (download) - annotate - [select for diffs], Mon Nov 5 07:39:17 2001 UTC (22 years, 7 months ago) by mpech
Branch: MAIN
Changes since 1.26: +11 -11 lines
Diff to previous 1.26 (colored)

kill more registers;

millert@ ok

Revision 1.26 / (download) - annotate - [select for diffs], Sat Jul 7 18:26:21 2001 UTC (22 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.25: +12 -12 lines
Diff to previous 1.25 (colored)

major -Wall cleanup, almost complete

Revision 1.25 / (download) - annotate - [select for diffs], Wed Jun 20 23:12:48 2001 UTC (22 years, 11 months ago) by niklas
Branch: MAIN
Changes since 1.24: +3 -3 lines
Diff to previous 1.24 (colored)

circumvent a 32-bit integer arithmetic overflow

Revision 1.24 / (download) - annotate - [select for diffs], Mon Jun 4 14:59:49 2001 UTC (23 years ago) by mickey
Branch: MAIN
Changes since 1.23: +6 -6 lines
Diff to previous 1.23 (colored)

return from main() don't exit

Revision 1.23 / (download) - annotate - [select for diffs], Thu Jan 18 00:18:38 2001 UTC (23 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.22: +3 -3 lines
Diff to previous 1.22 (colored)

crank "K to go" field to 8 digits; lukem@netbsd.org

Revision 1.22 / (download) - annotate - [select for diffs], Wed Oct 25 23:37:38 2000 UTC (23 years, 7 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8
Changes since 1.21: +6 -4 lines
Diff to previous 1.21 (colored)

various savecore/kvm fixes; gluk@ptci.ru, PR#1461

Revision 1.21 / (download) - annotate - [select for diffs], Mon Sep 18 03:45:27 2000 UTC (23 years, 8 months ago) by deraadt
Branch: MAIN
Changes since 1.20: +10 -10 lines
Diff to previous 1.20 (colored)

avoid alias against libc symbol dirname (binutils is so great)

Revision 1.19.4.1 / (download) - annotate - [select for diffs], Thu Jul 6 21:25:27 2000 UTC (23 years, 11 months ago) by jason
Branch: OPENBSD_2_7
Changes since 1.19: +12 -10 lines
Diff to previous 1.19 (colored) next main 1.20 (colored)

Pull in patch from current:
Fix (millert):
Cleaner loop structure when reading panic string from the core image.
We now check the return value of KREAD() which may solve PR 1254.

Revision 1.20 / (download) - annotate - [select for diffs], Wed May 31 17:09:17 2000 UTC (24 years ago) by millert
Branch: MAIN
Changes since 1.19: +12 -10 lines
Diff to previous 1.19 (colored)

Cleaner loop structure when reading panic string from the core image.
We now check the return value of KREAD() which may solve PR 1254.

Revision 1.19 / (download) - annotate - [select for diffs], Mon Aug 16 18:38:50 1999 UTC (24 years, 9 months ago) by art
Branch: MAIN
CVS Tags: OPENBSD_2_7_BASE, OPENBSD_2_6_BASE, OPENBSD_2_6
Branch point for: OPENBSD_2_7
Changes since 1.18: +3 -3 lines
Diff to previous 1.18 (colored)

add a missing strerror. (there was already a %s in the format string)

Revision 1.18 / (download) - annotate - [select for diffs], Thu Jul 1 15:41:59 1999 UTC (24 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.17: +2 -3 lines
Diff to previous 1.17 (colored)

extra fclose(); ronald@chersonese.com

Revision 1.17 / (download) - annotate - [select for diffs], Tue Feb 23 07:40:29 1999 UTC (25 years, 3 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5
Changes since 1.16: +24 -5 lines
Diff to previous 1.16 (colored)

do not print multiple \n in kernel version number printout,
and vis the panicstr

Revision 1.16 / (download) - annotate - [select for diffs], Sun Oct 4 16:36:13 1998 UTC (25 years, 8 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_4_BASE, OPENBSD_2_4
Changes since 1.15: +12 -2 lines
Diff to previous 1.15 (colored)

increase data size

Revision 1.15 / (download) - annotate - [select for diffs], Thu Sep 24 06:24:20 1998 UTC (25 years, 8 months ago) by millert
Branch: MAIN
Changes since 1.14: +1 -14 lines
Diff to previous 1.14 (colored)

Back out gzip changes, they will not make 2.4

Revision 1.14 / (download) - annotate - [select for diffs], Sat Sep 5 16:33:25 1998 UTC (25 years, 9 months ago) by millert
Branch: MAIN
Changes since 1.13: +14 -1 lines
Diff to previous 1.13 (colored)

We can now savecore with a gzipped kernel:
 o Use new gzip-aware nlist
 o If kernel cannot be found, use kernel.gz if it exists

Revision 1.13 / (download) - annotate - [select for diffs], Mon Aug 10 20:57:46 1998 UTC (25 years, 10 months ago) by mickey
Branch: MAIN
Changes since 1.12: +4 -2 lines
Diff to previous 1.12 (colored)

fix usage() string; use __progname

Revision 1.12 / (download) - annotate - [select for diffs], Mon Jul 13 02:11:23 1998 UTC (25 years, 11 months ago) by millert
Branch: MAIN
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (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.11 / (download) - annotate - [select for diffs], Sun Jul 5 19:22:35 1998 UTC (25 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.10: +4 -3 lines
Diff to previous 1.10 (colored)

fix bugs; seen by dima

Revision 1.10 / (download) - annotate - [select for diffs], Mon Jun 29 22:43:58 1998 UTC (25 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.9: +11 -5 lines
Diff to previous 1.9 (colored)

do not (void)kvm_read(...)

Revision 1.9 / (download) - annotate - [select for diffs], Wed Mar 25 23:38:52 1998 UTC (26 years, 2 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored)

usage to stderr, not syslog

Revision 1.8 / (download) - annotate - [select for diffs], Sun Dec 29 12:21:26 1996 UTC (27 years, 5 months ago) by graichen
Branch: MAIN
CVS Tags: OPENBSD_2_2_BASE, OPENBSD_2_2, OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.7: +3 -3 lines
Diff to previous 1.7 (colored)

remove one / from the printf of the filenames (_PATH_UNIX begings with a
slash - /bsd so we don't need an extra slash there)

Revision 1.7 / (download) - annotate - [select for diffs], Tue Oct 15 10:17:32 1996 UTC (27 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.6: +5 -1 lines
Diff to previous 1.6 (colored)

umask for writes; from joerg@freebsd.org

Revision 1.6 / (download) - annotate - [select for diffs], Tue Aug 20 04:22:40 1996 UTC (27 years, 9 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.5: +1 -7 lines
Diff to previous 1.5 (colored)

dump one NOT TWO headers; from osymh@gemini.oscs.montana.edu

Revision 1.5 / (download) - annotate - [select for diffs], Sun Jun 23 13:16:21 1996 UTC (27 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.4: +4 -4 lines
Diff to previous 1.4 (colored)

use _PATH_UNIX for kernel name

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

sync to netbsd 960418

Revision 1.3 / (download) - annotate - [select for diffs], Thu Mar 21 00:16:36 1996 UTC (28 years, 2 months ago) by niklas
Branch: MAIN
Changes since 1.2: +99 -95 lines
Diff to previous 1.2 (colored)

From NetBSD: Merge of 960317

Revision 1.2 / (download) - annotate - [select for diffs], Tue Feb 20 03:00:46 1996 UTC (28 years, 3 months ago) by tholo
Branch: MAIN
Changes since 1.1: +2 -2 lines
Diff to previous 1.1 (colored)

Name saved dump and kernel "bsd*", not "netbsd*"

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