The NetBSD Project

CVS log for src/sbin/restore/tape.c

[BACK] Up to [cvs.NetBSD.org] / src / sbin / restore

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.75: download - view: text, markup, annotated - select for diffs
Mon Feb 5 22:08:04 2024 UTC (10 months ago) by andvar
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs, HEAD
Diff to: previous 1.74: preferred, colored
Changes since revision 1.74: +3 -3 lines
triple "r" typos, mainly s/interrrupt/interrupt/ in comments and one definition.

Revision 1.74: download - view: text, markup, annotated - select for diffs
Mon Dec 12 16:53:30 2022 UTC (23 months, 3 weeks ago) by chs
Branches: MAIN
CVS tags: netbsd-10-base, netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10
Diff to: previous 1.73: preferred, colored
Changes since revision 1.73: +10 -10 lines
apply this commit from FreeBSD:

  commit 9dda00df7e8f9279a43d92758df6a7e10a9aed95
  Author: Chuck Silvers <chs@FreeBSD.org>
  Date:   Mon Dec 12 08:14:17 2022 -0800

      restore: fix restore of NFS4 ACLs

      Changing the mode bits on a file with an NFS4 ACL results in the
      NFS4 ACL being replaced by one matching the new mode bits being set,
      so when restoring a file with an NFS4 ACL, set the owner/group/mode first
      and then set the NFS4 ACL, so that setting the mode does not throw away
      the ACL that we just set.

      Reviewed by:    mckusick
      Differential Revision:  https://reviews.freebsd.org/D37618

Revision 1.73: download - view: text, markup, annotated - select for diffs
Sat Dec 10 18:49:44 2022 UTC (23 months, 4 weeks ago) by chs
Branches: MAIN
Diff to: previous 1.72: preferred, colored
Changes since revision 1.72: +5 -3 lines
apply this change from FreeBSD:

  commit c028393d7072f1f88efd8d6e6c77bb9b15b3f3b6
  Author: Kirk McKusick <mckusick@FreeBSD.org>
  Date:   Fri Apr 11 21:48:14 2008 +0000

      Correctly set file group when restore is run by a user other than root.

Revision 1.72: download - view: text, markup, annotated - select for diffs
Thu May 5 07:45:43 2022 UTC (2 years, 7 months ago) by mrg
Branches: MAIN
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +3 -3 lines
include the filename in the panic message for missing data.

instead of merely seeing:
	getfile: lost data
now this is seen:
	getfile: lost data: ./usr/libdata/debug/usr/libexec/cc1.debug

Revision 1.71: download - view: text, markup, annotated - select for diffs
Sat Jun 19 13:56:35 2021 UTC (3 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +284 -39 lines
Add external attribute dumping and restoring support from FreeBSD.
Does not fully work yet, attributes are being saved and restored correctly,
but don't appear in the restored files somehow.

Revision 1.70: download - view: text, markup, annotated - select for diffs
Thu Mar 11 01:13:11 2021 UTC (3 years, 8 months ago) by msaitoh
Branches: MAIN
CVS tags: cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +3 -3 lines
s/skiping/skipping/

Revision 1.69: download - view: text, markup, annotated - select for diffs
Thu Sep 3 19:31:34 2020 UTC (4 years, 3 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +5 -3 lines
If we hit an unknown header type (likely to be a corrupt record), and
the user choose to not abort, skip to the next header instead of trying
to use it.
This allowed me to recover files from a corrupt dump, instead of
getting a segfault.

Revision 1.67.8.1: download - view: text, markup, annotated - select for diffs
Thu Mar 3 14:30:52 2016 UTC (8 years, 9 months ago) by martin
Branches: netbsd-7
CVS tags: netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1
Diff to: previous 1.67: preferred, colored; next MAIN 1.68: preferred, colored
Changes since revision 1.67: +15 -15 lines
Pull up following revision(s) (requested by nakayama in ticket #1096):
	bin/mv/mv.c: revision 1.44
	bin/cp/utils.c: revision 1.43-1.44
	lib/librumphijack/hijack.c: revision 1.112-1.115
	usr.bin/touch/touch.c: revision 1.33
	sbin/restore/tape.c: revision 1.68
	sbin/restore/dirs.c: revision 1.51
Don't truncate at sub-microsecond while preserving timestamps.

One of motivation of this change is to make the behavior of test(1)
-nt/ot with preserved copy (like cp -p) closer to the NetBSD 6.
Of course whether full timestamps are kept or not depends also on
underlying file system.

The ifdef added in mv(1) since existing ifdefs was our local change
to compile it on solaris (though I couldn't test it):
http://mail-index.netbsd.org/tech-userlevel/2014/11/28/msg008831.html

Fix the name of failed function in warning message.

Hijack utimensat(2) so that t_vfs test passes after cp(1)/mv(1) are
changed to use the system call.  Linux also has this system call, but
not tested this on linux.

Also hijack futimens(2) so that t_sh test passes.

Define a generic ATCALL() and use it to implement utimensat()
Make ATCALL() behave for absolute paths too.

Revision 1.67.10.1: download - view: text, markup, annotated - select for diffs
Thu Mar 3 14:27:54 2016 UTC (8 years, 9 months ago) by martin
Branches: netbsd-7-0
CVS tags: netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE
Diff to: previous 1.67: preferred, colored; next MAIN 1.68: preferred, colored
Changes since revision 1.67: +15 -15 lines
Pull up following revision(s) (requested by nakayama in ticket #1096):
	bin/mv/mv.c: revision 1.44
	bin/cp/utils.c: revision 1.43-1.44
	lib/librumphijack/hijack.c: revision 1.112-1.115
	usr.bin/touch/touch.c: revision 1.33
	sbin/restore/tape.c: revision 1.68
	sbin/restore/dirs.c: revision 1.51
Don't truncate at sub-microsecond while preserving timestamps.

One of motivation of this change is to make the behavior of test(1)
-nt/ot with preserved copy (like cp -p) closer to the NetBSD 6.
Of course whether full timestamps are kept or not depends also on
underlying file system.

The ifdef added in mv(1) since existing ifdefs was our local change
to compile it on solaris (though I couldn't test it):
http://mail-index.netbsd.org/tech-userlevel/2014/11/28/msg008831.html

Fix the name of failed function in warning message.

Hijack utimensat(2) so that t_vfs test passes after cp(1)/mv(1) are
changed to use the system call.  Linux also has this system call, but
not tested this on linux.

Also hijack futimens(2) so that t_sh test passes.

Define a generic ATCALL() and use it to implement utimensat()
Make ATCALL() behave for absolute paths too.

Revision 1.68: download - view: text, markup, annotated - select for diffs
Mon Mar 2 03:17:24 2015 UTC (9 years, 9 months ago) by enami
Branches: MAIN
CVS tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, phil-wifi, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, pgoyette-compat-merge-20190127, pgoyette-compat-base, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, pgoyette-compat, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-9-base, netbsd-9-4-RELEASE, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, netbsd-8-base, netbsd-8-3-RELEASE, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, is-mlppp-base, is-mlppp, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +15 -15 lines
Don't truncate at microseconds while preserving timestamps.

One of motivation of this change is to make the behavior of test(1)
-nt/ot with preserved copy (like cp -p) closer to the NetBSD 6.
Of course whether full timestamps are kept or not depends also on
underlying file system.

The ifdef added in mv(1) since existing ifdefs was our local change
to compile it on solaris (though I couldn't test it):
http://mail-index.netbsd.org/tech-userlevel/2014/11/28/msg008831.html

Revision 1.66.8.1: download - view: text, markup, annotated - select for diffs
Mon Feb 25 00:28:10 2013 UTC (11 years, 9 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.66: preferred, colored; next MAIN 1.67: preferred, colored
Changes since revision 1.66: +3 -3 lines
resync with head

Revision 1.66.2.1: download - view: text, markup, annotated - select for diffs
Wed Jan 23 00:05:33 2013 UTC (11 years, 10 months ago) by yamt
Branches: yamt-pagecache
CVS tags: yamt-pagecache-tag8
Diff to: previous 1.66: preferred, colored; next MAIN 1.67: preferred, colored
Changes since revision 1.66: +3 -3 lines
sync with head

Revision 1.67: download - view: text, markup, annotated - select for diffs
Tue Jan 22 09:39:13 2013 UTC (11 years, 10 months ago) by dholland
Branches: MAIN
CVS tags: yamt-pagecache-base9, yamt-pagecache-base8, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, netbsd-7-base, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, agc-symver-base, agc-symver
Branch point for: netbsd-7-0, netbsd-7
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +3 -3 lines
Stuff UFS_ in front of a few of ufs's symbols to reduce namespace
pollution. Specifically:
   ROOTINO -> UFS_ROOTINO
   WINO -> UFS_WINO
   NXADDR -> UFS_NXADDR
   NDADDR -> UFS_NDADDR
   NIADDR -> UFS_NIADDR
   MAXSYMLINKLEN -> UFS_MAXSYMLINKLEN
   MAXSYMLINKLEN_UFS[12] -> UFS[12]_MAXSYMLINKLEN (for consistency)

Sort out ext2fs's misuse of NDADDR and NIADDR; fortunately, these have
the same values in ext2fs and ffs.

No functional change intended.

Revision 1.66: download - view: text, markup, annotated - select for diffs
Mon Aug 29 14:35:03 2011 UTC (13 years, 3 months ago) by joerg
Branches: MAIN
CVS tags: yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Branch point for: yamt-pagecache, tls-maxphys
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +3 -3 lines
Use __dead

Revision 1.65: download - view: text, markup, annotated - select for diffs
Sat Aug 6 20:46:42 2011 UTC (13 years, 4 months ago) by dholland
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +50 -20 lines
Add wrapper functions around hash algorithm operations to avoid
undefined behavior arising from illegal function casts. As a side
effect, no longer need -Wno-pointer-sign either.

Revision 1.64: download - view: text, markup, annotated - select for diffs
Sat Aug 6 17:01:06 2011 UTC (13 years, 4 months ago) by dholland
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +13 -13 lines
Simplify silly code and make it closer to type-safe. This causes amd64
gcc to reorder two pairs of instructions for some reason but the object
files are otherwise unchanged.

Revision 1.61.2.1: download - view: text, markup, annotated - select for diffs
Wed May 13 19:19:05 2009 UTC (15 years, 6 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.61: preferred, colored; next MAIN 1.62: preferred, colored
Changes since revision 1.61: +4 -4 lines
Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html

Revision 1.63: download - view: text, markup, annotated - select for diffs
Tue Apr 7 12:38:13 2009 UTC (15 years, 8 months ago) by lukem
Branches: MAIN
CVS tags: matt-premerge-20091211, matt-mips64-premerge-20101231, jym-xensuspend-nbase, jym-xensuspend-base, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +3 -3 lines
fix sign-compare issues

Revision 1.62: download - view: text, markup, annotated - select for diffs
Wed Feb 18 13:13:27 2009 UTC (15 years, 9 months ago) by yamt
Branches: MAIN
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +3 -3 lines
remove a useless cast.

Revision 1.60.4.1: download - view: text, markup, annotated - select for diffs
Sat Jan 17 13:48:53 2009 UTC (15 years, 10 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.60: preferred, colored; next MAIN 1.61: preferred, colored
Changes since revision 1.60: +8 -2 lines
Sync with HEAD.

Revision 1.60.10.1: download - view: text, markup, annotated - select for diffs
Fri Jan 2 21:08:49 2009 UTC (15 years, 11 months ago) by snj
Branches: netbsd-5
CVS tags: netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b
Diff to: previous 1.60: preferred, colored; next MAIN 1.61: preferred, colored
Changes since revision 1.60: +8 -2 lines
Pull up following revision(s) (requested by hannken in ticket #210):
	include/protocols/dumprestore.h: revision 1.15
	sbin/restore/tape.c: revision 1.61
Make restore work for Linux dump volumes by ignoring extended attribute
records on these volumes.  Tested with Centos 5.2.
Reviewed by: Manuel Bouyer <bouyer@netbsd.org>

Revision 1.61: download - view: text, markup, annotated - select for diffs
Fri Dec 26 19:26:04 2008 UTC (15 years, 11 months ago) by hannken
Branches: MAIN
CVS tags: mjf-devfs2-base
Branch point for: jym-xensuspend
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +8 -2 lines
Make restore work for Linux dump volumes by ignoring extended attribute
records on these volumes.  Tested with Centos 5.2.

Reviewed by: Manuel Bouyer <bouyer@netbsd.org>

Revision 1.59.4.1: download - view: text, markup, annotated - select for diffs
Sun Mar 23 00:44:24 2008 UTC (16 years, 8 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.59: preferred, colored; next MAIN 1.60: preferred, colored
Changes since revision 1.59: +4 -4 lines
sync with HEAD

Revision 1.59.6.1: download - view: text, markup, annotated - select for diffs
Mon Feb 18 21:04:17 2008 UTC (16 years, 9 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.59: preferred, colored; next MAIN 1.60: preferred, colored
Changes since revision 1.59: +4 -4 lines
Sync with HEAD.

Revision 1.60: download - view: text, markup, annotated - select for diffs
Sat Feb 16 17:58:01 2008 UTC (16 years, 9 months ago) by matt
Branches: MAIN
CVS tags: yamt-pf42-baseX, yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, yamt-pf42-base, yamt-pf42, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, wrstuden-revivesa, netbsd-5-base, mjf-devfs-base, matt-mips64-base2, matt-armv6-nbase, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-nbase, hpcarm-cleanup-base
Branch point for: netbsd-5, mjf-devfs2
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +4 -4 lines
Fix some inconsisent/conflicting definitions and missing parameters

Revision 1.57.2.1: download - view: text, markup, annotated - select for diffs
Sun Mar 4 14:22:25 2007 UTC (17 years, 9 months ago) by bouyer
Branches: netbsd-4
CVS tags: wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-RC1, netbsd-4-0-1-RELEASE, netbsd-4-0
Diff to: previous 1.57: preferred, colored; next MAIN 1.58: preferred, colored
Changes since revision 1.57: +56 -63 lines
Pull up following revision(s) (requested by hannken in ticket #483):
	sbin/restore/tape.c: revision 1.59 via patch
Add support for Solaris ufsdump volumes with more than 512*1024 inodes.
Here the bitmaps are written as
	CLRI or BITS with c_count <= 512
	ADDR* for the remaining blocks
Remove the bitmap handling from getfile(), remove xtrmap() and xtrmapskip().
Add new function getbitmap() modeled after getfile() that does bitmap
allocation, bitmap expansion and sets maxino.
Reviewed by: Manuel Bouyer <bouyer@netbsd.org>

Revision 1.52.2.1: download - view: text, markup, annotated - select for diffs
Sat Mar 3 23:09:17 2007 UTC (17 years, 9 months ago) by bouyer
Branches: netbsd-3
Diff to: previous 1.52: preferred, colored; next MAIN 1.53: preferred, colored
Changes since revision 1.52: +56 -63 lines
Pull up following revision(s) (requested by hannken in ticket #1674):
	sbin/restore/tape.c: revision 1.59
Add support for Solaris ufsdump volumes with more than 512*1024 inodes.
Here the bitmaps are written as
	CLRI or BITS with c_count <= 512
	ADDR* for the remaining blocks
Remove the bitmap handling from getfile(), remove xtrmap() and xtrmapskip().
Add new function getbitmap() modeled after getfile() that does bitmap
allocation, bitmap expansion and sets maxino.
Reviewed by: Manuel Bouyer <bouyer@netbsd.org>

Revision 1.59: download - view: text, markup, annotated - select for diffs
Fri Feb 9 09:36:02 2007 UTC (17 years, 10 months ago) by hannken
Branches: MAIN
CVS tags: matt-mips64-base, matt-mips64, matt-armv6-prevmlocking, matt-armv6-base, hpcarm-cleanup, cube-autoconf-base, cube-autoconf
Branch point for: mjf-devfs, matt-armv6
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +56 -63 lines
Add support for Solaris ufsdump volumes with more than 512*1024 inodes.
Here the bitmaps are written as

	CLRI or BITS with c_count <= 512
	ADDR* for the remaining blocks

Remove the bitmap handling from getfile(), remove xtrmap() and xtrmapskip().
Add new function getbitmap() modeled after getfile() that does bitmap
allocation, bitmap expansion and sets maxino.

Reviewed by: Manuel Bouyer <bouyer@netbsd.org>

Revision 1.58: download - view: text, markup, annotated - select for diffs
Mon Dec 18 20:07:32 2006 UTC (17 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +9 -11 lines
Convert a couple of "(void)&" constructs to volatile.
Flag various unused parameters in restore and dump so that these will
compile with -Wextra.  (Note: restore uses some stuff from dump.)

Revision 1.57: download - view: text, markup, annotated - select for diffs
Mon Oct 30 01:21:53 2006 UTC (18 years, 1 month ago) by christos
Branches: MAIN
CVS tags: netbsd-4-base
Branch point for: netbsd-4
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +3 -3 lines
find rmd160.h

Revision 1.56: download - view: text, markup, annotated - select for diffs
Mon Oct 16 03:12:23 2006 UTC (18 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +3 -3 lines
c99 iniitializer

Revision 1.55: download - view: text, markup, annotated - select for diffs
Sun Sep 25 04:16:22 2005 UTC (19 years, 2 months ago) by elad
Branches: MAIN
CVS tags: abandoned-netbsd-4-base, abandoned-netbsd-4
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +3 -3 lines
Use crypto/rmd160.h.

Revision 1.54: download - view: text, markup, annotated - select for diffs
Fri Aug 19 02:07:19 2005 UTC (19 years, 3 months ago) by christos
Branches: MAIN
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +17 -13 lines
64 bit inode changes

Revision 1.53: download - view: text, markup, annotated - select for diffs
Mon Jun 27 01:55:52 2005 UTC (19 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +9 -7 lines
sprinkle const.

Revision 1.52: download - view: text, markup, annotated - select for diffs
Thu Feb 17 15:00:33 2005 UTC (19 years, 9 months ago) by xtraeme
Branches: MAIN
CVS tags: netbsd-3-base, netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1, netbsd-3-1-1-RELEASE, netbsd-3-1, netbsd-3-0-RELEASE, netbsd-3-0-RC6, netbsd-3-0-RC5, netbsd-3-0-RC4, netbsd-3-0-RC3, netbsd-3-0-RC2, netbsd-3-0-RC1, netbsd-3-0-3-RELEASE, netbsd-3-0-2-RELEASE, netbsd-3-0-1-RELEASE, netbsd-3-0
Branch point for: netbsd-3
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +45 -70 lines
Kill __P(), use ANSI function declarations.

Revision 1.51: download - view: text, markup, annotated - select for diffs
Fri Oct 22 22:38:38 2004 UTC (20 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +40 -6 lines
Add an option (-M) to write a mtree specification (which needs to be passed
through sort before being feed to mtree) with file flags, instead of restoring
file flags at the same time as other attributes. Fix various issue with
schg, uchg, sappnd or uappnd flags which cause restore to fail in some case.
Discussed on tech-userlevel:
http://mail-index.netbsd.org/tech-userlevel/2004/10/12/0000.html

Revision 1.50: download - view: text, markup, annotated - select for diffs
Tue Jul 27 02:17:06 2004 UTC (20 years, 4 months ago) by enami
Branches: MAIN
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +68 -7 lines
Add -D flag which computes the digest of each regular files in the archive
using specified algorithm (currently md5, rmd160 or sha1) and write them
to standard output.

Revision 1.49: download - view: text, markup, annotated - select for diffs
Thu Aug 7 10:04:38 2003 UTC (21 years, 4 months ago) by agc
Branches: MAIN
CVS tags: netbsd-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-1, netbsd-2-0-base, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE, netbsd-2-0, netbsd-2
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +3 -7 lines
Move UCB-licensed code from 4-clause to 3-clause licence.

Patches provided by Joel Baker in PR 22308, verified by myself.

Revision 1.48: download - view: text, markup, annotated - select for diffs
Wed Apr 2 10:39:31 2003 UTC (21 years, 8 months ago) by fvdl
Branches: MAIN
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +194 -167 lines
Add support for UFS2. UFS2 is an enhanced FFS, adding support for
64 bit block pointers, extended attribute storage, and a few
other things.

This commit does not yet include the code to manipulate the extended
storage (for e.g. ACLs), this will be done later.

Originally written by Kirk McKusick and Network Associates Laboratories for
FreeBSD.

Revision 1.47: download - view: text, markup, annotated - select for diffs
Thu Mar 27 14:11:51 2003 UTC (21 years, 8 months ago) by taca
Branches: MAIN
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +4 -2 lines
Since "host" is used when RRESTORE is defined, enclose variable definition
with "#ifdef RRESTORE" and "#endif".

Revision 1.46: download - view: text, markup, annotated - select for diffs
Sat May 25 23:45:14 2002 UTC (22 years, 6 months ago) by wiz
Branches: MAIN
CVS tags: fvdl_fs64_base
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +3 -16 lines
__STDC__ is always defined on NetBSD.

Revision 1.45: download - view: text, markup, annotated - select for diffs
Tue Feb 19 19:16:38 2002 UTC (22 years, 9 months ago) by perseant
Branches: MAIN
CVS tags: netbsd-1-6-base, netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-6-PATCH002-RELEASE, netbsd-1-6-PATCH002-RC4, netbsd-1-6-PATCH002-RC3, netbsd-1-6-PATCH002-RC2, netbsd-1-6-PATCH002-RC1, netbsd-1-6-PATCH002, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001, netbsd-1-6
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +5 -3 lines
Don't forget to update curfile, if tape begins with TS_ADDR type block.
In particular, this means that if one member (say the last member) of a tape
set begins with continuation blocks, restore will not consider that tape
to contain all the inodes (curfile.ino==0 at the beginning of the tape).

Close PR #15545.

Revision 1.44: download - view: text, markup, annotated - select for diffs
Sun Dec 23 14:40:42 2001 UTC (22 years, 11 months ago) by lukem
Branches: MAIN
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +10 -5 lines
fix compile issues now that on-tape times are int32_t instead of time_t

Revision 1.43: download - view: text, markup, annotated - select for diffs
Wed Jan 24 23:14:04 2001 UTC (23 years, 10 months ago) by enami
Branches: MAIN
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +4 -4 lines
Remove incorrect advice for lint; the control may return from panic().

Revision 1.38.2.2: download - view: text, markup, annotated - select for diffs
Wed Oct 11 18:49:10 2000 UTC (24 years, 2 months ago) by he
Branches: netbsd-1-4
CVS tags: netbsd-1-4-PATCH003
Diff to: previous 1.38.2.1: preferred, colored; branchpoint 1.38: preferred, colored; next MAIN 1.39: preferred, colored
Changes since revision 1.38.2.1: +29 -9 lines
Pull up revisions 1.40-1.41 (requested by enami):
  Make restore correctly handle large dumps with large inode maps.
  Fixes PR#11188.

Revision 1.42: download - view: text, markup, annotated - select for diffs
Fri Jul 7 13:24:33 2000 UTC (24 years, 5 months ago) by enami
Branches: MAIN
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +3 -2 lines
Extract file flags of symbolic link.

Revision 1.41: download - view: text, markup, annotated - select for diffs
Tue May 23 02:27:33 2000 UTC (24 years, 6 months ago) by enami
Branches: MAIN
CVS tags: netbsd-1-5-base, netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2, netbsd-1-5, minoura-xpg4dl-base, minoura-xpg4dl
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +13 -4 lines
Add comment and sanity check about why we need not to skip remaining
blocks if we are reading inode bitmaps.

Revision 1.40: download - view: text, markup, annotated - select for diffs
Fri May 19 09:22:55 2000 UTC (24 years, 6 months ago) by enami
Branches: MAIN
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +20 -9 lines
Correctly extract the inode maps bigger than 512 tape blocks.

Revision 1.38.2.1: download - view: text, markup, annotated - select for diffs
Mon Jan 31 19:46:54 2000 UTC (24 years, 10 months ago) by he
Branches: netbsd-1-4
CVS tags: netbsd-1-4-PATCH002
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +4 -5 lines
Pull up revision 1.39 (requested by sommerfeld):
  Print the header even on dumps from a system with an unset
  host name.  Fixes PR#9282.

Revision 1.39: download - view: text, markup, annotated - select for diffs
Thu Jan 27 15:25:00 2000 UTC (24 years, 10 months ago) by sommerfeld
Branches: MAIN
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +4 -5 lines
Fix PR9282: restore doesn't print dump header on dumps from host with
unset hostname.

Revision 1.38: download - view: text, markup, annotated - select for diffs
Sun Jan 3 01:50:34 1999 UTC (25 years, 11 months ago) by lukem
Branches: MAIN
CVS tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221, wrstuden-devbsize, netbsd-1-4-base, netbsd-1-4-RELEASE, netbsd-1-4-PATCH001, comdex-fall-1999-base, comdex-fall-1999
Branch point for: netbsd-1-4
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +7 -3 lines
user friendly enhancments.
reworked from [bin/6710] by Brian Grayson <bgrayson@ece.utexas.edu>

Revision 1.37: download - view: text, markup, annotated - select for diffs
Wed Jun 24 19:56:11 1998 UTC (26 years, 5 months ago) by christos
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +10 -2 lines
Add an unlink (-u) flag so that we can use this for installs.

Revision 1.36: download - view: text, markup, annotated - select for diffs
Wed Apr 1 16:21:47 1998 UTC (26 years, 8 months ago) by kleink
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +3 -2 lines
Need <time.h> for ctime() prototype.

Revision 1.35: download - view: text, markup, annotated - select for diffs
Mon Mar 30 02:13:35 1998 UTC (26 years, 8 months ago) by mrg
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +3 -3 lines
use static int, not just static

Revision 1.31.2.2: download - view: text, markup, annotated - select for diffs
Sun Dec 14 01:39:40 1997 UTC (27 years ago) by mellon
Branches: netbsd-1-3
CVS tags: netbsd-1-3-RELEASE, netbsd-1-3-PATCH003-CANDIDATE2, netbsd-1-3-PATCH003-CANDIDATE1, netbsd-1-3-PATCH003-CANDIDATE0, netbsd-1-3-PATCH003, netbsd-1-3-PATCH002, netbsd-1-3-PATCH001
Diff to: previous 1.31.2.1: preferred, colored; branchpoint 1.31: preferred, colored; next MAIN 1.32: preferred, colored
Changes since revision 1.31.2.1: +4 -3 lines
Pull rev 1.34 up from trunk (enami)

Revision 1.34: download - view: text, markup, annotated - select for diffs
Sat Dec 13 22:22:53 1997 UTC (27 years ago) by enami
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +4 -3 lines
Fix the bug introduced in last change; pass IFCHR or IFBLK bit to
mknod(2) via mode.

Revision 1.31.2.1: download - view: text, markup, annotated - select for diffs
Tue Nov 18 07:14:10 1997 UTC (27 years ago) by mellon
Branches: netbsd-1-3
CVS tags: netbsd-1-3-BETA
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +11 -11 lines
Pull rev 1.32 and 1.33 up from trunk (enami)

Revision 1.33: download - view: text, markup, annotated - select for diffs
Tue Nov 18 03:08:21 1997 UTC (27 years ago) by enami
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +4 -4 lines
Use file mode 0600 when creating special file or fifo.
Suggested by Charles M. Hannum.

Revision 1.32: download - view: text, markup, annotated - select for diffs
Tue Nov 18 02:56:35 1997 UTC (27 years ago) by enami
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +9 -9 lines
Restore file attributes after extracting regular file.  Fixes PR#4515
from stephen.ma@jtec.com.au:

- call getfile() before altering file attributes.
- open file with mode 0600 instead of 0666 so that file won't remain
  group or world readable/writable even if getfile() terminated.
- also, move skipfile() before altering file attributes in IF{CHR,BLK} and
  IFIFO case for symmetry (suggested by Charles M. Hannum).

Revision 1.31: download - view: text, markup, annotated - select for diffs
Sun Oct 19 13:29:30 1997 UTC (27 years, 1 month ago) by mycroft
Branches: MAIN
CVS tags: netbsd-1-3-base
Branch point for: netbsd-1-3
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +8 -8 lines
Use futimes(2).  Do {f,}utimes(2) *before* {f,}chflags(2), for obvious
reasons.

Revision 1.30: download - view: text, markup, annotated - select for diffs
Wed Oct 8 22:51:27 1997 UTC (27 years, 2 months ago) by enami
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +13 -3 lines
Restore owner/group/mode/atime/mtime of symbolic links.

Revision 1.29: download - view: text, markup, annotated - select for diffs
Tue Sep 16 13:44:16 1997 UTC (27 years, 2 months ago) by lukem
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +17 -18 lines
resolve conflicts from lite-2 merge

Revision 1.1.1.3 (vendor branch): download - view: text, markup, annotated - select for diffs
Tue Sep 16 12:42:27 1997 UTC (27 years, 2 months ago) by lukem
Branches: WFJ-920714, CSRG
CVS tags: lite-2
Diff to: previous 1.1.1.2: preferred, colored
Changes since revision 1.1.1.2: +63 -33 lines
imported from lite-2

Revision 1.28: download - view: text, markup, annotated - select for diffs
Mon Sep 15 08:04:40 1997 UTC (27 years, 2 months ago) by lukem
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +24 -15 lines
* cleanup for WARNS=1
* fix use of .Nm

Revision 1.27: download - view: text, markup, annotated - select for diffs
Sun Jul 6 08:51:32 1997 UTC (27 years, 5 months ago) by lukem
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -6 lines
as inspired by a commit message of Todd Miller <millert@cvs.openbsd.org>:
* cleanup a bit for -Wall
* use __progname instead of "restore"

Revision 1.26: download - view: text, markup, annotated - select for diffs
Tue Apr 15 07:12:25 1997 UTC (27 years, 8 months ago) by lukem
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +3 -3 lines
use _PATH_DEFTAPE from <paths.h> instead of "pathnames.h"
cleanup references/examples to use /dev/rst* instead of /dev/rmt*
minor .Nm usage cleanup in man page

Revision 1.25: download - view: text, markup, annotated - select for diffs
Wed Mar 19 08:42:55 1997 UTC (27 years, 8 months ago) by lukem
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +11 -11 lines
* use mkstemp() instead of mktemp()
* remove "register" qualifiers

Revision 1.24: download - view: text, markup, annotated - select for diffs
Thu Dec 26 17:35:35 1996 UTC (27 years, 11 months ago) by cjs
Branches: MAIN
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +3 -3 lines
Fix typo: PR bin/3059

Revision 1.20.4.2: download - view: text, markup, annotated - select for diffs
Tue Dec 10 06:14:11 1996 UTC (28 years ago) by mycroft
Branches: netbsd-1-2
CVS tags: netbsd-1-2-PATCH001
Diff to: previous 1.20.4.1: preferred, colored; branchpoint 1.20: preferred, colored; next MAIN 1.21: preferred, colored
Changes since revision 1.20.4.1: +3 -3 lines
From trunk:
Add some missing byte-swaps, so this works across endians.

Revision 1.20.4.1: download - view: text, markup, annotated - select for diffs
Fri Dec 6 01:50:49 1996 UTC (28 years ago) by rat
Branches: netbsd-1-2
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +23 -23 lines
Pullup request from Chris G Demetriou <Chris_G_Demetriou@ux2.sp.cs.cmu.edu>

>Make dump and restore usable on the alpha

Revision 1.23: download - view: text, markup, annotated - select for diffs
Wed Dec 4 03:54:04 1996 UTC (28 years ago) by mycroft
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +3 -3 lines
Make sure to byte-swap all of the relevant fields; especially c_flags.

Revision 1.22: download - view: text, markup, annotated - select for diffs
Sat Nov 30 18:31:29 1996 UTC (28 years ago) by cgd
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +3 -3 lines
When initializing 'fssize,' the size of the data buffer to be used when
writing data to the file system, if the "optimal" file system I/O
operation block size is less than TP_BSIZE, leave fssize alone (i.e.
at its default setting of MAXBSIZE).  This was causing restore's
stack to be trashed, because the end-of-buffer checking/flushing code
around line 680 would never notice that the buffer was full (because
it'd be comparing a buffer segment index, which would always be >= 1, to
fssize / TP_BSIZE, which could be zero in that case), and would keep
filling and filling and filling...

Revision 1.21: download - view: text, markup, annotated - select for diffs
Sat Nov 30 18:04:48 1996 UTC (28 years ago) by cgd
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +22 -22 lines
patches from Tom I Helbekkmo <tih@nhh.no> to deal with type-size issues,
so this works (better, at least) on 64-bit machines (e.g. alpha).

Revision 1.20: download - view: text, markup, annotated - select for diffs
Fri Mar 15 22:39:41 1996 UTC (28 years, 9 months ago) by scottr
Branches: MAIN
CVS tags: netbsd-1-2-base, netbsd-1-2-RELEASE, netbsd-1-2-BETA
Branch point for: netbsd-1-2
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +6 -3 lines
Be more paranoid with our effective uid.

Revision 1.19: download - view: text, markup, annotated - select for diffs
Mon Jun 19 00:20:32 1995 UTC (29 years, 5 months ago) by cgd
Branches: MAIN
CVS tags: netbsd-1-1-base, netbsd-1-1-RELEASE, netbsd-1-1-PATCH001, netbsd-1-1
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +9 -9 lines
stat structure POSIXification

Revision 1.18: download - view: text, markup, annotated - select for diffs
Sun Jun 11 05:30:36 1995 UTC (29 years, 6 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +7 -7 lines
Back out previous change.

Revision 1.17: download - view: text, markup, annotated - select for diffs
Wed Jun 7 17:16:49 1995 UTC (29 years, 6 months ago) by cgd
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +9 -9 lines
typeof(timeval.tv_sec) != time_t

Revision 1.16: download - view: text, markup, annotated - select for diffs
Sat Mar 18 14:59:57 1995 UTC (29 years, 8 months ago) by cgd
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +7 -2 lines
convert to new RCS Id conventions; reduce my headache

Revision 1.15: download - view: text, markup, annotated - select for diffs
Mon Feb 20 19:43:56 1995 UTC (29 years, 9 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +23 -23 lines
Use atexit() rather than tweaking every exit() to call the cleanup function.

Revision 1.14: download - view: text, markup, annotated - select for diffs
Wed Dec 28 02:21:53 1994 UTC (29 years, 11 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +28 -16 lines
Mostly sync with CSRG.

Revision 1.13: download - view: text, markup, annotated - select for diffs
Fri Sep 23 14:27:57 1994 UTC (30 years, 2 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +12 -11 lines
Eliminate uses of some obsolete functions.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Sun Sep 18 05:11:03 1994 UTC (30 years, 2 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +19 -1 lines
Allow extracting FIFOs.

Revision 1.1.1.2 (vendor branch): download - view: text, markup, annotated - select for diffs
Mon Jun 13 22:53:24 1994 UTC (30 years, 6 months ago) by mycroft
Branches: WFJ-920714, CSRG
CVS tags: lite-1
Diff to: previous 1.1.1.1: preferred, colored
Changes since revision 1.1.1.1: +1348 -1 lines
Import 4.4-Lite version.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed Jun 8 19:33:45 1994 UTC (30 years, 6 months ago) by mycroft
Branches: MAIN
CVS tags: netbsd-1-0-base, netbsd-1-0-RELEASE, netbsd-1-0-PATCH1, netbsd-1-0-PATCH06, netbsd-1-0-PATCH05, netbsd-1-0-PATCH04, netbsd-1-0-PATCH03, netbsd-1-0-PATCH02, netbsd-1-0-PATCH0, netbsd-1-0
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +6 -10 lines
Update from 4.4-Lite, with local changes.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Tue May 17 04:14:39 1994 UTC (30 years, 6 months ago) by cgd
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +1353 -1 lines
copyright foo

Revision 1.9: download - view: text, markup, annotated - select for diffs
Mon Apr 25 18:33:15 1994 UTC (30 years, 7 months ago) by cgd
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +1 -1 lines
kill some #ifndefs

Revision 1.8: download - view: text, markup, annotated - select for diffs
Sat Apr 2 01:50:23 1994 UTC (30 years, 8 months ago) by cgd
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +1 -1 lines
just kill the cast completely

Revision 1.7: download - view: text, markup, annotated - select for diffs
Fri Apr 1 03:36:04 1994 UTC (30 years, 8 months ago) by cgd
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +1 -1 lines
bad cast

Revision 1.6: download - view: text, markup, annotated - select for diffs
Tue Mar 1 00:16:15 1994 UTC (30 years, 9 months ago) by cgd
Branches: MAIN
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -1 lines
Check correct header when looking at tape number.
from thomas@mathematik.uni-Bremen.de

Revision 1.5: download - view: text, markup, annotated - select for diffs
Wed Dec 22 10:32:13 1993 UTC (30 years, 11 months ago) by cgd
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +1 -1 lines
new version from CSRG, via BSDI, with fixes

Revision 1.4: download - view: text, markup, annotated - select for diffs
Sun Aug 1 18:25:11 1993 UTC (31 years, 4 months ago) by mycroft
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +1 -1 lines
Add RCS identifiers.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Tue Apr 20 10:05:22 1993 UTC (31 years, 7 months ago) by mycroft
Branches: MAIN
CVS tags: netbsd-0-9-base, netbsd-0-9-RELEASE, netbsd-0-9-BETA, netbsd-0-9-ALPHA2, netbsd-0-9-ALPHA, netbsd-0-9
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +1 -1 lines
Fix message.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Thu Mar 25 05:41:59 1993 UTC (31 years, 8 months ago) by cgd
Branches: MAIN
CVS tags: netbsd-alpha-1, netbsd-0-8
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -1 lines
restore didn't understand dirs which spanned more than one volume.
fixed by patch from Gene Stark (gene@stark.uucp).

Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Sun Mar 21 09:45:37 1993 UTC (31 years, 8 months ago) by cgd
Branches: WFJ-920714, CSRG
CVS tags: patchkit-0-2-2, WFJ-386bsd-01
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +1 -1 lines
initial import of 386bsd-0.1 sources

Revision 1.1: download - view: text, markup, annotated - select for diffs
Sun Mar 21 09:45:37 1993 UTC (31 years, 8 months ago) by cgd
Branches: MAIN
Initial revision

Diff request

This form allows you to request diffs 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.

Log view options

CVSweb <webmaster@jp.NetBSD.org>