View | Details | Raw Unified | Return to bug 3135 | Differences between
and this patch

Collapse All | Expand All

(-)a/sftp.1 (-1 / +5 lines)
Lines 30-36 Link Here
30
.Nd OpenSSH secure file transfer
30
.Nd OpenSSH secure file transfer
31
.Sh SYNOPSIS
31
.Sh SYNOPSIS
32
.Nm sftp
32
.Nm sftp
33
.Op Fl 46aCfpqrv
33
.Op Fl 46aCfNpqrv
34
.Op Fl B Ar buffer_size
34
.Op Fl B Ar buffer_size
35
.Op Fl b Ar batchfile
35
.Op Fl b Ar batchfile
36
.Op Fl c Ar cipher
36
.Op Fl c Ar cipher
Lines 275-280 For full details of the options listed below, and their possible values, see Link Here
275
.El
275
.El
276
.It Fl P Ar port
276
.It Fl P Ar port
277
Specifies the port to connect to on the remote host.
277
Specifies the port to connect to on the remote host.
278
.It Fl N
279
Disables quiet mode, e.g. to override the implicit quiet mode set by the
280
.Fl b
281
flag.
278
.It Fl p
282
.It Fl p
279
Preserves modification times, access times, and modes from the
283
Preserves modification times, access times, and modes from the
280
original files transferred.
284
original files transferred.
(-)a/sftp.c (-1 / +4 lines)
Lines 2409-2415 main(int argc, char **argv) Link Here
2409
	infile = stdin;
2409
	infile = stdin;
2410
2410
2411
	while ((ch = getopt(argc, argv,
2411
	while ((ch = getopt(argc, argv,
2412
	    "1246afhpqrvCc:D:i:l:o:s:S:b:B:F:J:P:R:")) != -1) {
2412
	    "1246afhNpqrvCc:D:i:l:o:s:S:b:B:F:J:P:R:")) != -1) {
2413
		switch (ch) {
2413
		switch (ch) {
2414
		/* Passed through to ssh(1) */
2414
		/* Passed through to ssh(1) */
2415
		case '4':
2415
		case '4':
Lines 2473-2478 main(int argc, char **argv) Link Here
2473
		case 'f':
2473
		case 'f':
2474
			global_fflag = 1;
2474
			global_fflag = 1;
2475
			break;
2475
			break;
2476
		case 'N':
2477
			quiet = 0;
2478
			break;
2476
		case 'p':
2479
		case 'p':
2477
			global_pflag = 1;
2480
			global_pflag = 1;
2478
			break;
2481
			break;

Return to bug 3135