OpenBSD CVS

CVS log for src/usr.bin/ssh/progressmeter.c


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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.53 / (download) - annotate - [select for diffs], Wed Apr 12 14:22:04 2023 UTC (13 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, HEAD
Changes since 1.52: +1 -2 lines
Diff to previous 1.52 (colored)

remove duplicate signal.h include

Revision 1.52 / (download) - annotate - [select for diffs], Wed Mar 8 04:43:12 2023 UTC (14 months, 1 week ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_7_3_BASE, OPENBSD_7_3
Changes since 1.51: +1 -3 lines
Diff to previous 1.51 (colored)

Delete obsolete /* ARGSUSED */ lint comments.

ok miod@ millert@

Revision 1.51 / (download) - annotate - [select for diffs], Wed Feb 22 03:56:43 2023 UTC (14 months, 3 weeks ago) by djm
Branch: MAIN
Changes since 1.50: +51 -42 lines
Diff to previous 1.50 (colored)

fix progressmeter corruption on wide displays; bz3534
feedback/ok dtucker@

Revision 1.50 / (download) - annotate - [select for diffs], Thu Jan 23 07:10:22 2020 UTC (4 years, 3 months ago) by dtucker
Branch: MAIN
CVS Tags: OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, 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
Changes since 1.49: +3 -3 lines
Diff to previous 1.49 (colored)

Replace all calls to signal(2) with a wrapper around sigaction(2).
This wrapper blocks all other signals during the handler preventing
races between handlers, and sets SA_RESTART which should reduce the
potential for short read/write operations.

Revision 1.49 / (download) - annotate - [select for diffs], Tue Oct 29 07:47:27 2019 UTC (4 years, 6 months ago) by dtucker
Branch: MAIN
Changes since 1.48: +1 -3 lines
Diff to previous 1.48 (colored)

Signal handler cleanup: remove leftover support for unreliable signals
and now-unneeded save and restore of errno.  ok deraadt@ markus@

Revision 1.48 / (download) - annotate - [select for diffs], Fri May 3 06:06:30 2019 UTC (5 years ago) by dtucker
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6
Changes since 1.47: +3 -3 lines
Diff to previous 1.47 (colored)

Use the correct (according to POSIX) format for left-justification
in snmprintf. bz#3002, patch from velemas at gmail.com, ok markus@.

Revision 1.47 / (download) - annotate - [select for diffs], Thu Jan 24 16:52:17 2019 UTC (5 years, 3 months ago) by dtucker
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.46: +5 -8 lines
Diff to previous 1.46 (colored)

Have progressmeter force an update at the beginning and end of each
transfer.  Fixes the problem recently introduces where very quick
transfers do not display the progressmeter at all.  Spotted by naddy@

Revision 1.46 / (download) - annotate - [select for diffs], Wed Jan 23 08:01:46 2019 UTC (5 years, 3 months ago) by dtucker
Branch: MAIN
Changes since 1.45: +24 -29 lines
Diff to previous 1.45 (colored)

Sanitize scp filenames via snmprintf.  To do this we move the
progressmeter formatting outside of signal handler context and have
the atomicio callback called for EINTR too.  bz#2434 with contributions
from djm and jjelen at redhat.com, ok djm@

Revision 1.45 / (download) - annotate - [select for diffs], Thu Jun 30 05:17:05 2016 UTC (7 years, 10 months ago) by dtucker
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0
Changes since 1.44: +4 -4 lines
Diff to previous 1.44 (colored)

Explicitly check for 100% completion to avoid potential floating point
rounding error, which could cause progressmeter to report 99% on completion.
While there invert the test so the 100% case is clearer.  with & ok djm@

Revision 1.44 / (download) - annotate - [select for diffs], Mon May 30 18:34:41 2016 UTC (7 years, 11 months ago) by schwarze
Branch: MAIN
Changes since 1.43: +24 -27 lines
Diff to previous 1.43 (colored)

Backout rev. 1.43 for now.

The function update_progress_meter() calls refresh_progress_meter()
which calls snmprintf() which calls malloc(); but update_progress_meter()
acts as the SIGALRM signal handler.

"malloc(): error: recursive call" reported by sobrado@.

Revision 1.43 / (download) - annotate - [select for diffs], Wed May 25 23:48:45 2016 UTC (7 years, 11 months ago) by schwarze
Branch: MAIN
Changes since 1.42: +27 -24 lines
Diff to previous 1.42 (colored)

To prevent screwing up terminal settings when printing to the
terminal, for ASCII and UTF-8, escape bytes not forming characters
and bytes forming non-printable characters with vis(3) VIS_OCTAL.
For other character sets, abort printing of the current string in
these cases.  In particular,
* let scp(1) respect the local user's LC_CTYPE locale(1);
* sanitize data received from the remote host;
* sanitize filenames, usernames, and similar data even locally;
* take character display widths into account for the progressmeter.

This is believed to be sufficient to keep the local terminal safe
on OpenBSD, but bad things can still happen on other systems with
state-dependent locales because many places in the code print
unencoded ASCII characters into the output stream.

Using feedback from djm@ and martijn@,
various aspects discussed with many others.

deraadt@ says it should go in now, i probably already hesitated too long

Revision 1.42 / (download) - annotate - [select for diffs], Wed Mar 2 22:42:40 2016 UTC (8 years, 2 months ago) by dtucker
Branch: MAIN
Changes since 1.41: +6 -7 lines
Diff to previous 1.41 (colored)

Improve precision of progressmeter for sftp and scp by storing sub-second
timestamps.  Pointed out by mmcc@, ok deraadt@ markus@

Revision 1.41 / (download) - annotate - [select for diffs], Wed Jan 14 13:54:13 2015 UTC (9 years, 4 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_9_BASE, OPENBSD_5_9, OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.40: +3 -3 lines
Diff to previous 1.40 (colored)

update sftp client and server to new buffer API.
pretty much just mechanical changes; with & ok markus

Revision 1.40 / (download) - annotate - [select for diffs], Thu Sep 19 00:24:52 2013 UTC (10 years, 7 months ago) by djm
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6, OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.39: +5 -3 lines
Diff to previous 1.39 (colored)

store the initial file offset so the progress meter doesn't freak out
when resuming sftp transfers. bz#2137; patch from Iain Morgan; ok dtucker@

Revision 1.39 / (download) - annotate - [select for diffs], Sun Jun 2 13:33:05 2013 UTC (10 years, 11 months ago) by dtucker
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.38: +2 -1 lines
Diff to previous 1.38 (colored)

Add misc.h for monotim prototype.

Revision 1.38 / (download) - annotate - [select for diffs], Sat Jun 1 13:15:52 2013 UTC (10 years, 11 months ago) by dtucker
Branch: MAIN
Changes since 1.37: +3 -3 lines
Diff to previous 1.37 (colored)

Use clock_gettime(CLOCK_MONOTONIC ...) for ssh timers so that things like
keepalives and rekeying will work properly over clock steps.  Suggested by
markus@, "looks good" djm@.

Revision 1.24.2.1 / (download) - annotate - [select for diffs], Fri Oct 6 03:19:33 2006 UTC (17 years, 7 months ago) by brad
Branch: OPENBSD_3_8
Changes since 1.24: +14 -3 lines
Diff to previous 1.24 (colored) next main 1.25 (colored)

upgrade to OpenSSH 4.4

Revision 1.26.2.1 / (download) - annotate - [select for diffs], Sat Sep 30 04:06:51 2006 UTC (17 years, 7 months ago) by brad
Branch: OPENBSD_3_9
Changes since 1.26: +11 -4 lines
Diff to previous 1.26 (colored) next main 1.27 (colored)

upgrade to OpenSSH 4.4

Revision 1.37 / (download) - annotate - [select for diffs], Thu Aug 3 03:34:42 2006 UTC (17 years, 9 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, 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, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.36: +2 -3 lines
Diff to previous 1.36 (colored)

almost entirely get rid of the culture of ".h files that include .h files"
ok djm, sort of ok stevesk
makes the pain stop in one easy step

Revision 1.36 / (download) - annotate - [select for diffs], Tue Aug 1 23:36:12 2006 UTC (17 years, 9 months ago) by stevesk
Branch: MAIN
Changes since 1.35: +2 -2 lines
Diff to previous 1.35 (colored)

clean extra spaces

Revision 1.35 / (download) - annotate - [select for diffs], Tue Aug 1 23:22:47 2006 UTC (17 years, 9 months ago) by stevesk
Branch: MAIN
Changes since 1.34: +2 -1 lines
Diff to previous 1.34 (colored)

move #include <stdio.h> out of includes.h

Revision 1.34 / (download) - annotate - [select for diffs], Sat Jul 22 20:48:23 2006 UTC (17 years, 9 months ago) by stevesk
Branch: MAIN
Changes since 1.33: +2 -1 lines
Diff to previous 1.33 (colored)

move #include <string.h> out of includes.h

Revision 1.33 / (download) - annotate - [select for diffs], Sat Jul 22 19:08:54 2006 UTC (17 years, 9 months ago) by stevesk
Branch: MAIN
Changes since 1.32: +2 -1 lines
Diff to previous 1.32 (colored)

move #include <time.h> out of includes.h

Revision 1.32 / (download) - annotate - [select for diffs], Fri Jul 21 21:26:55 2006 UTC (17 years, 10 months ago) by stevesk
Branch: MAIN
Changes since 1.31: +2 -1 lines
Diff to previous 1.31 (colored)

ARGSUSED for signal handler

Revision 1.31 / (download) - annotate - [select for diffs], Mon Jul 17 01:31:09 2006 UTC (17 years, 10 months ago) by stevesk
Branch: MAIN
Changes since 1.30: +3 -1 lines
Diff to previous 1.30 (colored)

move #include <unistd.h> out of includes.h

Revision 1.30 / (download) - annotate - [select for diffs], Tue Jul 11 20:07:25 2006 UTC (17 years, 10 months ago) by stevesk
Branch: MAIN
Changes since 1.29: +2 -1 lines
Diff to previous 1.29 (colored)

move #include <errno.h> out of includes.h; ok markus@

Revision 1.29 / (download) - annotate - [select for diffs], Sat Mar 25 13:17:02 2006 UTC (18 years, 1 month ago) by djm
Branch: MAIN
Changes since 1.28: +1 -0 lines
Diff to previous 1.28 (colored)

Put $OpenBSD$ tags back (as comments) to replace the RCSID()s that
Theo nuked - our scripts to sync -portable need them in the files

Revision 1.28 / (download) - annotate - [select for diffs], Sun Mar 19 18:56:42 2006 UTC (18 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.27: +1 -0 lines
Diff to previous 1.27 (colored)

ARGSUSED for signal handlers

Revision 1.27 / (download) - annotate - [select for diffs], Sun Mar 19 18:51:18 2006 UTC (18 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.26: +0 -1 lines
Diff to previous 1.26 (colored)

RCSID() can die

Revision 1.26 / (download) - annotate - [select for diffs], Mon Feb 20 17:02:44 2006 UTC (18 years, 2 months ago) by stevesk
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE
Branch point for: OPENBSD_3_9
Changes since 1.25: +3 -1 lines
Diff to previous 1.25 (colored)

move #include <signal.h> out of includes.h; ok markus@

Revision 1.25 / (download) - annotate - [select for diffs], Fri Feb 10 00:27:13 2006 UTC (18 years, 3 months ago) by stevesk
Branch: MAIN
Changes since 1.24: +3 -1 lines
Diff to previous 1.24 (colored)

move #include <sys/ioctl.h> out of includes.h; ok markus@

Revision 1.22.4.1 / (download) - annotate - [select for diffs], Sun Sep 4 18:40:02 2005 UTC (18 years, 8 months ago) by brad
Branch: OPENBSD_3_7
Changes since 1.22: +36 -13 lines
Diff to previous 1.22 (colored) next main 1.23 (colored)

upgrade to OpenSSH 4.2

Revision 1.22.2.1 / (download) - annotate - [select for diffs], Fri Sep 2 03:45:00 2005 UTC (18 years, 8 months ago) by brad
Branch: OPENBSD_3_6
Changes since 1.22: +36 -13 lines
Diff to previous 1.22 (colored) next main 1.23 (colored)

upgrade to OpenSSH 4.2

Revision 1.24 / (download) - annotate - [select for diffs], Tue Jun 7 13:25:23 2005 UTC (18 years, 11 months ago) by jaredy
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE
Branch point for: OPENBSD_3_8
Changes since 1.23: +34 -13 lines
Diff to previous 1.23 (colored)

catch SIGWINCH and resize progress meter accordingly; ok markus dtucker

Revision 1.23 / (download) - annotate - [select for diffs], Thu Apr 28 10:17:56 2005 UTC (19 years ago) by moritz
Branch: MAIN
Changes since 1.22: +3 -1 lines
Diff to previous 1.22 (colored)

add snprintf checks. ok djm@ markus@

Revision 1.15.2.2 / (download) - annotate - [select for diffs], Thu Aug 19 22:37:31 2004 UTC (19 years, 9 months ago) by brad
Branch: OPENBSD_3_4
Changes since 1.15.2.1: +12 -12 lines
Diff to previous 1.15.2.1 (colored) to branchpoint 1.15 (colored) next main 1.16 (colored)

upgrade to OpenSSH 3.9

Revision 1.19.2.1 / (download) - annotate - [select for diffs], Thu Aug 19 04:13:26 2004 UTC (19 years, 9 months ago) by brad
Branch: OPENBSD_3_5
Changes since 1.19: +12 -12 lines
Diff to previous 1.19 (colored) next main 1.20 (colored)

upgrade to OpenSSH 3.9

Revision 1.22 / (download) - annotate - [select for diffs], Sun Jul 11 17:48:47 2004 UTC (19 years, 10 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE, OPENBSD_3_6_BASE
Branch point for: OPENBSD_3_7, OPENBSD_3_6
Changes since 1.21: +9 -9 lines
Diff to previous 1.21 (colored)

spaces

Revision 1.21 / (download) - annotate - [select for diffs], Mon Jun 21 17:36:31 2004 UTC (19 years, 10 months ago) by avsm
Branch: MAIN
Changes since 1.20: +3 -3 lines
Diff to previous 1.20 (colored)

make ssh -Wshadow clean, no functional changes
markus@ ok

Revision 1.20 / (download) - annotate - [select for diffs], Tue May 11 19:01:43 2004 UTC (20 years ago) by deraadt
Branch: MAIN
Changes since 1.19: +2 -2 lines
Diff to previous 1.19 (colored)

improve some code lint did not like; djm millert ok

Revision 1.3.2.2 / (download) - annotate - [select for diffs], Thu Mar 4 18:18:16 2004 UTC (20 years, 2 months ago) by brad
Branch: OPENBSD_3_3
Changes since 1.3.2.1: +10 -6 lines
Diff to previous 1.3.2.1 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)

upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8upgrade to OpenSSH 3.8

Revision 1.15.2.1 / (download) - annotate - [select for diffs], Sat Feb 28 03:51:33 2004 UTC (20 years, 2 months ago) by brad
Branch: OPENBSD_3_4
Changes since 1.15: +10 -6 lines
Diff to previous 1.15 (colored)

upgrade to OpenSSH 3.8

Revision 1.19 / (download) - annotate - [select for diffs], Thu Feb 5 15:33:33 2004 UTC (20 years, 3 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE
Branch point for: OPENBSD_3_5
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored)

fix ETA for > 4GB; bugzilla #791; ok henning@ deraadt@

Revision 1.18 / (download) - annotate - [select for diffs], Tue Dec 2 12:15:10 2003 UTC (20 years, 5 months ago) by markus
Branch: MAIN
Changes since 1.17: +7 -3 lines
Diff to previous 1.17 (colored)

improvments from andreas@:
* saner speed estimate for transfers that takes less than a second by
  rounding the time to 1 second.
* when the transfer is finished calculate the actual total speed
  rather than the current speed which is given during the transfer

Revision 1.17 / (download) - annotate - [select for diffs], Thu Nov 20 11:39:28 2003 UTC (20 years, 6 months ago) by markus
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored)

fix rounding errors; from andreas@

Revision 1.16 / (download) - annotate - [select for diffs], Tue Sep 23 20:18:52 2003 UTC (20 years, 7 months ago) by markus
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored)

don't print trailing \0; bug #709; Robert.Dahlem@siemens.com
ok millert/deraadt@

Revision 1.3.4.2 / (download) - annotate - [select for diffs], Tue Sep 16 21:20:26 2003 UTC (20 years, 8 months ago) by brad
Branch: OPENBSD_3_2
Changes since 1.3.4.1: +200 -194 lines
Diff to previous 1.3.4.1 (colored) to branchpoint 1.3 (colored) next main 1.4 (colored)

upgrade to OpenSSH 3.7

Revision 1.3.2.1 / (download) - annotate - [select for diffs], Tue Sep 16 20:50:43 2003 UTC (20 years, 8 months ago) by brad
Branch: OPENBSD_3_3
Changes since 1.3: +200 -194 lines
Diff to previous 1.3 (colored)

upgrade to OpenSSH 3.7

Revision 1.15 / (download) - annotate - [select for diffs], Sun Aug 31 12:14:22 2003 UTC (20 years, 8 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE
Branch point for: OPENBSD_3_4
Changes since 1.14: +3 -1 lines
Diff to previous 1.14 (colored)

do write to buf[-1]

Revision 1.14 / (download) - annotate - [select for diffs], Sun Aug 31 10:26:04 2003 UTC (20 years, 8 months ago) by markus
Branch: MAIN
Changes since 1.13: +2 -2 lines
Diff to previous 1.13 (colored)

pass file_size + 1 to snprintf: fixes printing of truncated
file names; fix based on patch/report from sturm@;

Revision 1.13 / (download) - annotate - [select for diffs], Thu Jul 31 22:34:03 2003 UTC (20 years, 9 months ago) by markus
Branch: MAIN
Changes since 1.12: +27 -5 lines
Diff to previous 1.12 (colored)

print rate similar old version; round instead truncate;

Revision 1.12 / (download) - annotate - [select for diffs], Wed Jul 30 07:53:27 2003 UTC (20 years, 9 months ago) by markus
Branch: MAIN
Changes since 1.11: +3 -4 lines
Diff to previous 1.11 (colored)

whitespace

Revision 1.11 / (download) - annotate - [select for diffs], Wed Jul 30 07:44:14 2003 UTC (20 years, 9 months ago) by markus
Branch: MAIN
Changes since 1.10: +4 -6 lines
Diff to previous 1.10 (colored)

use only 4 digits in format_size

Revision 1.10 / (download) - annotate - [select for diffs], Tue Jul 29 18:26:46 2003 UTC (20 years, 9 months ago) by markus
Branch: MAIN
Changes since 1.9: +2 -2 lines
Diff to previous 1.9 (colored)

fix length for "- stalled -"

Revision 1.9 / (download) - annotate - [select for diffs], Tue Jul 29 18:24:00 2003 UTC (20 years, 9 months ago) by markus
Branch: MAIN
Changes since 1.8: +180 -199 lines
Diff to previous 1.8 (colored)

replace 4 clause BSD licensed progressmeter code with a replacement
from Nils Nordman and myself; ok deraadt@

Revision 1.8 / (download) - annotate - [select for diffs], Sat Jun 28 16:23:06 2003 UTC (20 years, 10 months ago) by deraadt
Branch: MAIN
Changes since 1.7: +3 -3 lines
Diff to previous 1.7 (colored)

deal with typing of write vs read in atomicio

Revision 1.7 / (download) - annotate - [select for diffs], Tue Jun 10 22:20:52 2003 UTC (20 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.6: +3 -3 lines
Diff to previous 1.6 (colored)

mostly ansi cleanup; pval ok

Revision 1.6 / (download) - annotate - [select for diffs], Mon Apr 7 21:58:05 2003 UTC (21 years, 1 month ago) by millert
Branch: MAIN
Changes since 1.5: +25 -21 lines
Diff to previous 1.5 (colored)

The UCB copyright here is incorrect.  This code did not originate
at UCB, it was written by Luke Mewburn.  Updated the copyright at
the author's request.  markus@ OK

Revision 1.5.2.1 / (download) - annotate - [select for diffs], Thu Apr 3 22:35:17 2003 UTC (21 years, 1 month ago) by miod
Branch: OPENBSD_3_1
Changes since 1.5: +1 -1 lines
Diff to previous 1.5 (colored) next main 1.6 (colored)

Merge OpenSSH 3.6.1

Revision 1.5 / (download) - annotate - [select for diffs], Thu Apr 3 10:17:35 2003 UTC (21 years, 1 month ago) by itojun
Branch: MAIN
Branch point for: OPENBSD_3_1
Changes since 1.4: +1 -3 lines
Diff to previous 1.4 (colored)

remove $OpenBSD$, as other *.c does not have it.

Revision 1.4 / (download) - annotate - [select for diffs], Thu Apr 3 07:25:27 2003 UTC (21 years, 1 month ago) by itojun
Branch: MAIN
Changes since 1.3: +3 -1 lines
Diff to previous 1.3 (colored)

$OpenBSD$

Revision 1.3.4.1 / (download) - annotate - [select for diffs], Tue Apr 1 10:38:57 2003 UTC (21 years, 1 month ago) by margarida
Branch: OPENBSD_3_2
Changes since 1.3: +1 -1 lines
Diff to previous 1.3 (colored)

These were missed on the update to the last openssh.

Thanks to all who pointed it out.

Revision 1.3 / (download) - annotate - [select for diffs], Mon Mar 17 10:38:38 2003 UTC (21 years, 2 months ago) by markus
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE
Branch point for: OPENBSD_3_3, OPENBSD_3_2
Changes since 1.2: +3 -2 lines
Diff to previous 1.2 (colored)

don't print \n if backgrounded; from ho@

Revision 1.2 / (download) - annotate - [select for diffs], Sun Jan 12 16:57:02 2003 UTC (21 years, 4 months ago) by markus
Branch: MAIN
Changes since 1.1: +3 -2 lines
Diff to previous 1.1 (colored)

allow WARNINGS=yes; ok djm@

Revision 1.1 / (download) - annotate - [select for diffs], Fri Jan 10 08:19:07 2003 UTC (21 years, 4 months ago) by fgsch
Branch: MAIN

sftp progress meter support.
original diffs by Nils Nordman <nino at nforced dot com> via markus@, merged
to -current by me, djm@ ok.

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.