OpenBSD CVS

CVS log for src/usr.bin/rsync/extern.h


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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.48 / (download) - annotate - [select for diffs], Tue Feb 27 11:28:30 2024 UTC (2 months, 2 weeks ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, HEAD
Changes since 1.47: +8 -3 lines
Diff to previous 1.47 (colored)

Split hash_file into three steps, setup, add buf and final.

Setup inits the context and adds the seed. The buf function simply adds
a block from the file to the hash. The final function calls MD4_Final()
to close the context and generate the hash.

This will help to remove the mmap in the sender and should result in a
more atomic view of the file since hash_file() is now called together
with the other hash_functions.

OK deraadt@ tb@

Revision 1.47 / (download) - annotate - [select for diffs], Mon Nov 27 11:30:49 2023 UTC (5 months, 3 weeks ago) by claudio
Branch: MAIN
Changes since 1.46: +2 -1 lines
Diff to previous 1.46 (colored)

Implement --omit-link-times / -J based on the --omit-dir-times work
done by job@.
OK tb@

Revision 1.46 / (download) - annotate - [select for diffs], Thu Nov 23 11:59:53 2023 UTC (5 months, 3 weeks ago) by job
Branch: MAIN
Changes since 1.45: +2 -1 lines
Diff to previous 1.45 (colored)

Add --omit-dir-times / -O

OK claudio@

Revision 1.45 / (download) - annotate - [select for diffs], Fri Apr 28 10:24:38 2023 UTC (12 months, 3 weeks ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_7_4_BASE, OPENBSD_7_4
Changes since 1.44: +3 -1 lines
Diff to previous 1.44 (colored)

Implement --size-only and --ignore-times

Flags are passed to the remote system but --size-only is only set
if local system is sender since this is the behaviour of rsync.
Initial diff from Martin Cracauer but mostly reimplemented and extended
by myself.
OK kn@

Revision 1.44 / (download) - annotate - [select for diffs], Tue Aug 2 18:09:20 2022 UTC (21 months, 2 weeks ago) by job
Branch: MAIN
CVS Tags: OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2
Changes since 1.43: +6 -1 lines
Diff to previous 1.43 (colored)

Add --contimeout functionality.

Input from deraadt@

OK claudio@

Revision 1.36.2.1 / (download) - annotate - [select for diffs], Tue Nov 9 13:41:24 2021 UTC (2 years, 6 months ago) by benno
Branch: OPENBSD_6_9
Changes since 1.36: +155 -114 lines
Diff to previous 1.36 (colored) next main 1.37 (colored)

rpki-client(8) should handle CA misbehaviours as soft-errors.

This is a merge of usr.sbin/rpki-client and usr.bin/rsync from current
and includes all commits in rpki-client 7.5 up to Tue Nov 9 11:03:40
2021 and to openrsync up to Wed Nov 3 14:42:13 2021, including:

* Make rpki-client more resilient regarding untrusted input:
  - fail repository synchronisation after 15min runtime
  - limit the number of publication points per TAL
  - don't allow DOCTYPE definitions in RRDP XML files
  - fix detection of HTTP redirect loops.
* limit the number of concurrent rsync processes.
* fix CRLF in tal files.

This is patches/6.9/common/021_rpki.patch.sig

Revision 1.41.2.1 / (download) - annotate - [select for diffs], Tue Nov 9 13:40:41 2021 UTC (2 years, 6 months ago) by benno
Branch: OPENBSD_7_0
Changes since 1.41: +18 -2 lines
Diff to previous 1.41 (colored) next main 1.42 (colored)

rpki-client(8) should handle CA misbehaviours as soft-errors.

This is a merge of usr.sbin/rpki-client and usr.bin/rsync from current
and includes all commits in rpki-client 7.5 up to Tue Nov 9 11:03:40
2021 and to openrsync up to Wed Nov 3 14:42:13 2021, including:

* Make rpki-client more resilient regarding untrusted input:
  - fail repository synchronisation after 15min runtime
  - limit the number of publication points per TAL
  - don't allow DOCTYPE definitions in RRDP XML files
  - fix detection of HTTP redirect loops.
* limit the number of concurrent rsync processes.
* fix CRLF in tal files.

This is patches/7.0/common/004_rpki.patch.sig

Revision 1.43 / (download) - annotate - [select for diffs], Fri Oct 29 08:00:59 2021 UTC (2 years, 6 months ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_7_1_BASE, OPENBSD_7_1
Changes since 1.42: +3 -1 lines
Diff to previous 1.42 (colored)

Properly implement --max-size and --min-size.
This uses scan_scaled(3) from libutil which is very similar to how rsync
behaves. Not implemented are the +/-1 math and the 1000 vs 1024 multipliers.
OK benno@ job@

Revision 1.42 / (download) - annotate - [select for diffs], Fri Oct 22 11:10:34 2021 UTC (2 years, 6 months ago) by claudio
Branch: MAIN
Changes since 1.41: +16 -2 lines
Diff to previous 1.41 (colored)

Implement --compare-dest in openrsync. compare-dest allows you to add
additional directories to check for files to be available.
OK benno@

Revision 1.41 / (download) - annotate - [select for diffs], Wed Sep 1 09:48:08 2021 UTC (2 years, 8 months ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE
Branch point for: OPENBSD_7_0
Changes since 1.40: +2 -3 lines
Diff to previous 1.40 (colored)

Remove from0 support. openrsync will not implement all bad ideas that
were added to rsync. from0 is one of those and really not needed.
OK job@

Revision 1.40 / (download) - annotate - [select for diffs], Sun Aug 29 13:43:46 2021 UTC (2 years, 8 months ago) by claudio
Branch: MAIN
Changes since 1.39: +25 -1 lines
Diff to previous 1.39 (colored)

Implement --exclude/exclude-file and --include/include-file.
Currently only simple include and excludes work, the advanced filters
introduced later in rsync are not implemented. It is unclear if the per
directory filters are something we want to implement. This requires
more modern protocols which openrsync is not able to handle right now.

This adds a special matching function to allow the ** matching which behaves
mostly like rsyncs version with the exception of how bad [] patterns are
expanded. For bad patterns openrsync follows more how fnmatch behaves and
not the somewhat strange rsync behaviour.

Not perfect but committing now so people can test and provide feedback.

Revision 1.39 / (download) - annotate - [select for diffs], Wed Jun 30 15:24:10 2021 UTC (2 years, 10 months ago) by claudio
Branch: MAIN
Changes since 1.38: +106 -117 lines
Diff to previous 1.38 (colored)

... way too much white space!

Revision 1.38 / (download) - annotate - [select for diffs], Wed Jun 30 13:10:04 2021 UTC (2 years, 10 months ago) by claudio
Branch: MAIN
Changes since 1.37: +1 -1 lines
Diff to previous 1.37 (colored)

Replace Id: tags with OpenBSD: tags
OK deraadt@

Revision 1.37 / (download) - annotate - [select for diffs], Mon May 17 11:54:14 2021 UTC (3 years ago) by claudio
Branch: MAIN
Changes since 1.36: +14 -1 lines
Diff to previous 1.36 (colored)

Introduce some error exit codes which are in sync with the ones from
proper rsync. This should help to make the tool behave more like the
real thing.
OK benno@

Revision 1.36 / (download) - annotate - [select for diffs], Wed Mar 31 19:45:16 2021 UTC (3 years, 1 month ago) by job
Branch: MAIN
CVS Tags: OPENBSD_6_9_BASE
Branch point for: OPENBSD_6_9
Changes since 1.35: +2 -1 lines
Diff to previous 1.35 (colored)

Add option to suppress the Message of the Day

Fine deraadt@

Revision 1.35 / (download) - annotate - [select for diffs], Mon Mar 22 11:14:42 2021 UTC (3 years, 1 month ago) by claudio
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

Make fmt argument const. Format local vars a bit.
From kristaps@

Revision 1.34 / (download) - annotate - [select for diffs], Tue Nov 24 16:54:44 2020 UTC (3 years, 5 months ago) by claudio
Branch: MAIN
Changes since 1.33: +3 -3 lines
Diff to previous 1.33 (colored)

Simple implementation of --timeout to exit after specified seconds of I/O
inactivity. By default rsync will wait forever but this results in stuck
processes if the remote side does not answer properly as seen in rpki-client.
OK job@ benno@

Revision 1.33 / (download) - annotate - [select for diffs], Sun May 17 19:54:41 2020 UTC (4 years ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_6_8_BASE, OPENBSD_6_8
Changes since 1.32: +27 -27 lines
Diff to previous 1.32 (colored)

__FILE__ and __LINE__ information are fine during early development, or
occasionally for fatal source-code bugs are critical and must be hunted down.
It is NOT suitable to expose regular users to this on a regular basis though.
ok kn beck

Revision 1.32 / (download) - annotate - [select for diffs], Fri Aug 9 05:28:01 2019 UTC (4 years, 9 months ago) by claudio
Branch: MAIN
CVS Tags: OPENBSD_6_7_BASE, OPENBSD_6_7, OPENBSD_6_6_BASE, OPENBSD_6_6
Changes since 1.31: +2 -1 lines
Diff to previous 1.31 (colored)

Add --address argument to openrsync to bind to the specified address
when connecting to a rsync daemon.
OK deraadt@ benno@ naddy@ sthen@

Revision 1.31 / (download) - annotate - [select for diffs], Sun Jun 2 17:36:48 2019 UTC (4 years, 11 months ago) by florian
Branch: MAIN
Changes since 1.30: +8 -1 lines
Diff to previous 1.30 (colored)

Use a simple hash table to look up blocks by the fast-hash.  Also use
a rolling computation for the fast-hash.OB With this openrsync is on
par with gpl rsync for file updates.
From kristaps

Revision 1.30 / (download) - annotate - [select for diffs], Wed May 8 21:30:11 2019 UTC (5 years ago) by benno
Branch: MAIN
Changes since 1.29: +14 -20 lines
Diff to previous 1.29 (colored)

remove sess argument from all functions that only used it for logging
functions.
ok deraadt@

Revision 1.29 / (download) - annotate - [select for diffs], Wed May 8 20:00:25 2019 UTC (5 years ago) by benno
Branch: MAIN
Changes since 1.28: +40 -46 lines
Diff to previous 1.28 (colored)

remove sess argument from log functions. ok deraadt@

Revision 1.28 / (download) - annotate - [select for diffs], Thu Apr 4 04:19:54 2019 UTC (5 years, 1 month ago) by bket
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.27: +2 -1 lines
Diff to previous 1.27 (colored)

Add support for not crossing filesystem boundaries (-x) to rsync. Option
and behaviour is the same as GPL rsync.

Initial diff received feedback from benno@, schwarze@, deraadt@ and
florian@. Thanks!

OK deraadt@

Revision 1.27 / (download) - annotate - [select for diffs], Tue Apr 2 05:32:08 2019 UTC (5 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.26: +11 -1 lines
Diff to previous 1.26 (colored)

Pull in addargs() API from ssh to replace complicated hand-rolled argument
composition code for the remote process.
ok florian naddy

Revision 1.26 / (download) - annotate - [select for diffs], Sun Mar 31 09:26:05 2019 UTC (5 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.25: +4 -1 lines
Diff to previous 1.25 (colored)

Increasing strictness regarding signed-vs-unsigned types and their range
in the io-path, whic is done by seperating int vs uint functions variants.
reviewed by naddy, florian, and jsg

Revision 1.25 / (download) - annotate - [select for diffs], Sun Mar 31 08:47:46 2019 UTC (5 years, 1 month ago) by naddy
Branch: MAIN
Changes since 1.24: +5 -3 lines
Diff to previous 1.24 (colored)

Add ability to combine rsync:// and -e by splitting rsync_socket()
into two functions, rsync_connect() to establish a TCP connection
to the remote daemon, and rsync_socket() to run the actual protocol.

E.g.:
rsync -av --del -e 'ssh -W localhost:rsync -lanoncvs' \
rsync://anoncvs.spacehopper.org/OpenBSD-CVS/ /cvs

ok deraadt@

Revision 1.24 / (download) - annotate - [select for diffs], Wed Mar 6 18:37:22 2019 UTC (5 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.23: +1 -3 lines
Diff to previous 1.23 (colored)

Simplify startup code, various phases are heading straight towards exit
so they don't need to be constructed to return errors.
ok benno florian

Revision 1.23 / (download) - annotate - [select for diffs], Fri Feb 22 09:54:36 2019 UTC (5 years, 2 months ago) by benno
Branch: MAIN
Changes since 1.22: +1 -5 lines
Diff to previous 1.22 (colored)

remove __BEGIN_DECLS/__END_DECLS, this .h file wont be
read by a C++ compiler, and __* are no lonmger recommended.
https://www.gnu.org/software/libtool/manual/html_node/C-header-files.html
ok deraadt@

Revision 1.22 / (download) - annotate - [select for diffs], Thu Feb 21 22:06:26 2019 UTC (5 years, 2 months ago) by benno
Branch: MAIN
Changes since 1.21: +2 -1 lines
Diff to previous 1.21 (colored)

implement --numeric-ids, tweaked by kristaps

Revision 1.21 / (download) - annotate - [select for diffs], Mon Feb 18 22:47:34 2019 UTC (5 years, 3 months ago) by benno
Branch: MAIN
Changes since 1.20: +7 -6 lines
Diff to previous 1.20 (colored)

new attempt to sync with kristaps up to Sun Feb 17 2019

339cf5998c0c022623cd68de50722b6c14543952 Push "error trail" further into code.

baf58ce5fe1bc6ce431b3b0ac8264b83ae8c7d02 Document all arguments.  Add
common -av usage.  Remove bits about not supporting anything but
files/dirs.

821a811a8c80e52fb56b241fc65a16cae1b4fb2c Disambiguate as prodded by deraadt@

6c4475b8f226e9031ec0ec1b3f14f7d347132c87 Add -h to usage string

4d344ae6156873b44c95de0c1ed629e637c2d7ab Clarify error message
language, use service name instead of port, specify that the socket is
SOCK_STREAM.  From deraadt@.  Tweaked for lowercase messages.

f3ec049e76257fc96bcdc872f1d3b967b98f3eb6 In consideration to benno@'s
comments, let the mktemp functions propogate an errno handled by the
caller.  Also keep the original line lengths.  While in mktemp.c, make
some defines into an enum.

e116c2bd00e634b56e4276120135915ceaa31cf2 Put the FSM of the sender
into its own function.  Put dry_run ack and end of phase ack into the
send buffer too, further reducing the possibility of deadlock.

c7745aa4c7394ca89d841f8ee76782256d694340 Make the sender write loop be
fully non-blocking.  This frees us of deadlocking the protocol because
the sender will always be able to pull down data.

93c7b4843e80aeac2ec6ae6ffc395df4deaf4a31 Remove "yoda" notation to be
more in tune with OpenBSD.  Most found by deraadt@.

Revision 1.20 / (download) - annotate - [select for diffs], Mon Feb 18 21:55:27 2019 UTC (5 years, 3 months ago) by benno
Branch: MAIN
Changes since 1.19: +6 -12 lines
Diff to previous 1.19 (colored)

revert previous

Revision 1.19 / (download) - annotate - [select for diffs], Mon Feb 18 21:34:54 2019 UTC (5 years, 3 months ago) by benno
Branch: MAIN
Changes since 1.18: +12 -6 lines
Diff to previous 1.18 (colored)

sync with kristaps up to Sun Feb 17 2019

339cf5998c0c022623cd68de50722b6c14543952 Push "error trail" further into code.

baf58ce5fe1bc6ce431b3b0ac8264b83ae8c7d02 Document all arguments.  Add
  common -av usage.  Remove bits about not supporting anything but
  files/dirs.

821a811a8c80e52fb56b241fc65a16cae1b4fb2c Disambiguate as prodded by deraadt@

6c4475b8f226e9031ec0ec1b3f14f7d347132c87 Add -h to usage string

4d344ae6156873b44c95de0c1ed629e637c2d7ab Clarify error message
  language, use service name instead of port, specify that the socket is
  SOCK_STREAM.  From deraadt@.  Tweaked for lowercase messages.

f3ec049e76257fc96bcdc872f1d3b967b98f3eb6 In consideration to benno@'s
  comments, let the mktemp functions propogate an errno handled by the
  caller.  Also keep the original line lengths.  While in mktemp.c, make
  some defines into an enum.

e116c2bd00e634b56e4276120135915ceaa31cf2 Put the FSM of the sender
  into its own function.  Put dry_run ack and end of phase ack into the
  send buffer too, further reducing the possibility of deadlock.

c7745aa4c7394ca89d841f8ee76782256d694340 Make the sender write loop be
  fully non-blocking.  This frees us of deadlocking the protocol because
  the sender will always be able to pull down data.

93c7b4843e80aeac2ec6ae6ffc395df4deaf4a31 Remove "yoda" notation to be
  more in tune with OpenBSD.  Most found by deraadt@.

Revision 1.18 / (download) - annotate - [select for diffs], Sun Feb 17 18:11:50 2019 UTC (5 years, 3 months ago) by deraadt
Branch: MAIN
Changes since 1.17: +2 -1 lines
Diff to previous 1.17 (colored)

Add support for --port=PORT and ":port" in the rsync:// URL.
real rsync only supports numbers, but this supports service names also
ok florian benno

Revision 1.17 / (download) - annotate - [select for diffs], Sat Feb 16 23:16:54 2019 UTC (5 years, 3 months ago) by deraadt
Branch: MAIN
Changes since 1.16: +2 -4 lines
Diff to previous 1.16 (colored)

use MINIMUM() instead of MIN() as elsewhere in the tree

Revision 1.16 / (download) - annotate - [select for diffs], Sat Feb 16 17:59:33 2019 UTC (5 years, 3 months ago) by deraadt
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored)

nasty ugly invisible spaces

Revision 1.15 / (download) - annotate - [select for diffs], Sat Feb 16 16:59:34 2019 UTC (5 years, 3 months ago) by florian
Branch: MAIN
Changes since 1.14: +2 -2 lines
Diff to previous 1.14 (colored)

sync with kristaps, commit 42166a639caa877efd91e73e288b89abf6b7cfd3
Remove spaces at end of line.

Revision 1.14 / (download) - annotate - [select for diffs], Sat Feb 16 16:58:39 2019 UTC (5 years, 3 months ago) by florian
Branch: MAIN
Changes since 1.13: +38 -10 lines
Diff to previous 1.13 (colored)

sync with kristaps, commit 1842d31d600f2834ae78fe0d99a29519a853d75c
Make sender mostly nonblocking for writes.  This takes a lot of logic once
in blocks.c and puts it directly into sender.c.  It allows running openrsync
against itself without deadlocks.

Revision 1.13 / (download) - annotate - [select for diffs], Sat Feb 16 16:57:17 2019 UTC (5 years, 3 months ago) by florian
Branch: MAIN
Changes since 1.12: +18 -7 lines
Diff to previous 1.12 (colored)

sync with kristaps, commit f5c1e234990877cd274b7bcdd4d9883104cd1568
Make sender have reentrant sending and prioritised reading.  This way,
the sender gets data off the wire as quickly as possible.  While here,
remove dead wood from blocks.c (blk_merge).

Revision 1.12 / (download) - annotate - [select for diffs], Sat Feb 16 10:48:05 2019 UTC (5 years, 3 months ago) by florian
Branch: MAIN
Changes since 1.11: +16 -8 lines
Diff to previous 1.11 (colored)

implement -D and in turn -a

"you snooze, you get collisions" deraadt@

Revision 1.11 / (download) - annotate - [select for diffs], Sat Feb 16 10:46:22 2019 UTC (5 years, 3 months ago) by florian
Branch: MAIN
Changes since 1.10: +5 -1 lines
Diff to previous 1.10 (colored)

Introduce mkstempat(), a variation on mkstemp(3) and mkstemplinkat().

mkstempat() works exactly like mkstemp(3) except that it replaces
open(2) with openat(2) so that it can be used in rsync_downloader()
to easily deal with relative paths.

mkstemplinkat() works somewhat like mkdtemp() to create a template
symlink.

Use the mkstemplinkat() to create or update symlinks and overwrite
existing objects including empty directories that might exist under
the destination name.

"you snooze, you get collisions" deraadt@

Revision 1.10 / (download) - annotate - [select for diffs], Thu Feb 14 18:29:08 2019 UTC (5 years, 3 months ago) by florian
Branch: MAIN
Changes since 1.9: +3 -1 lines
Diff to previous 1.9 (colored)

sync with kristaps, commit be8a27a290d5171290c015284542f2af4296be12

Put permission-setting code into its own function, as we'll need to call it
from several places.  Also enable that -o sets the owner.

Revision 1.9 / (download) - annotate - [select for diffs], Thu Feb 14 18:26:52 2019 UTC (5 years, 3 months ago) by florian
Branch: MAIN
Changes since 1.8: +9 -6 lines
Diff to previous 1.8 (colored)

sync with kristaps, commit c5350b9055c3921001778275bb808a5c811c21c1

Protocol-level support for -o.  The actual sharing itself is more or less a
copy of the existing -g code.  I've refactored a lot of the ids.c code to be
generic and only accept a "isgid", as the rest is the same.  So there's some
churn as I make all references to "group" be generic.

Revision 1.8 / (download) - annotate - [select for diffs], Tue Feb 12 19:39:57 2019 UTC (5 years, 3 months ago) by benno
Branch: MAIN
Changes since 1.7: +4 -3 lines
Diff to previous 1.7 (colored)

whitespace and knf

Revision 1.7 / (download) - annotate - [select for diffs], Tue Feb 12 19:13:03 2019 UTC (5 years, 3 months ago) by benno
Branch: MAIN
Changes since 1.6: +4 -2 lines
Diff to previous 1.6 (colored)

sync
commit 72ea211d57a0f235a2d7439a7e908af66f47fa10
Author: kristaps <>
Date:   Tue Feb 12 07:29:55 2019 +0000

    Sanitise group handling to handle group wheel (according to rsync, this is not
    ever remapped by name) and empty group names (not allowed, but we must accept them
    anyway).  Push most of this code into ids.c and make sure it is style(9)
    conformant.  Add TODO about performance and clarify protocol in rsync.5.

Revision 1.6 / (download) - annotate - [select for diffs], Tue Feb 12 19:04:52 2019 UTC (5 years, 3 months ago) by benno
Branch: MAIN
Changes since 1.5: +16 -1 lines
Diff to previous 1.5 (colored)

sync
commit bc997c5d70dbe402903c7ce0c915c7fe3744a754
Author: kristaps <>
Date:   Mon Feb 11 23:37:41 2019 +0000

    Move identifier code into ids.c.

Revision 1.5 / (download) - annotate - [select for diffs], Tue Feb 12 18:06:25 2019 UTC (5 years, 3 months ago) by benno
Branch: MAIN
Changes since 1.4: +2 -1 lines
Diff to previous 1.4 (colored)

sync

commit b55c5ce631d8fd557d665e25e31191b33c15f829
Author: kristaps <>
Date:   Mon Feb 11 23:27:23 2019 +0000

    Pass down -g and also order flags.

and the extern.h chunk from

commit 472ad2fab2692579a5773d78d6934b03c1098fb2
Author: kristaps <>
Date:   Mon Feb 11 20:45:22 2019 +0000

Revision 1.4 / (download) - annotate - [select for diffs], Tue Feb 12 14:09:59 2019 UTC (5 years, 3 months ago) by deraadt
Branch: MAIN
Changes since 1.3: +2 -1 lines
Diff to previous 1.3 (colored)

complete support for -e and -rsh=name options
ok florian benno

Revision 1.3 / (download) - annotate - [select for diffs], Tue Feb 12 14:07:00 2019 UTC (5 years, 3 months ago) by deraadt
Branch: MAIN
Changes since 1.2: +11 -11 lines
Diff to previous 1.2 (colored)

using const is misleading if the only access requires a de-const, it is
a false perception of safety
ok benno florian

Revision 1.2 / (download) - annotate - [select for diffs], Sun Feb 10 23:24:14 2019 UTC (5 years, 3 months ago) by benno
Branch: MAIN
Changes since 1.1: +9 -9 lines
Diff to previous 1.1 (colored)

fix whitespace

Revision 1.1 / (download) - annotate - [select for diffs], Sun Feb 10 23:18:28 2019 UTC (5 years, 3 months ago) by benno
Branch: MAIN

Import Kristaps' openrsync into the tree.
OK deraadt@

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.