1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Merge branch 'pre-0.64'

This commit is contained in:
Simon Tatham 2014-11-22 16:42:01 +00:00
commit d23c0972cd
5 changed files with 18 additions and 17 deletions

View File

@ -1,8 +1,8 @@
\C{plink} Using the command-line connection tool \i{Plink} \C{plink} Using the command-line connection tool \i{Plink}
\i{Plink} (PuTTY Link) is a command-line connection tool similar to \i{Plink} is a command-line connection tool similar to UNIX \c{ssh}.
UNIX \c{ssh}. It is mostly used for \i{automated operations}, such as It is mostly used for \i{automated operations}, such as making CVS
making CVS access a repository on a remote server. access a repository on a remote server.
Plink is probably not what you want if you want to run an Plink is probably not what you want if you want to run an
\i{interactive session} in a console window. \i{interactive session} in a console window.
@ -40,7 +40,7 @@ version of Plink you're using, and gives you a brief summary of how to
use Plink: use Plink:
\c Z:\sysosd>plink \c Z:\sysosd>plink
\c PuTTY Link: command-line connection utility \c Plink: command-line connection utility
\c Release 0.XX \c Release 0.XX
\c Usage: plink [options] [user@]host [command] \c Usage: plink [options] [user@]host [command]
\c ("host" can also be a PuTTY saved session name) \c ("host" can also be a PuTTY saved session name)

View File

@ -461,7 +461,7 @@ if (defined $makefiles{'cygwin'}) {
&splitline("RCFLAGS = \$(RCINC) --define WIN32=1 --define _WIN32=1 ". &splitline("RCFLAGS = \$(RCINC) --define WIN32=1 --define _WIN32=1 ".
"--define WINVER=0x0400 ".(join " ", map {"-I$dirpfx$_"} @srcdirs))."\n". "--define WINVER=0x0400 ".(join " ", map {"-I$dirpfx$_"} @srcdirs))."\n".
"\n". "\n".
$makefile_extra{'cygwin'}->{'vars'} . &def($makefile_extra{'cygwin'}->{'vars'}) .
"\n". "\n".
".SUFFIXES:\n". ".SUFFIXES:\n".
"\n"; "\n";
@ -491,7 +491,7 @@ if (defined $makefiles{'cygwin'}) {
} }
} }
print "\n"; print "\n";
print $makefile_extra{'cygwin'}->{'end'} if defined $makefile_extra{'cygwin'}->{'end'}; print &def($makefile_extra{'cygwin'}->{'end'});
print "\nclean:\n". print "\nclean:\n".
"\trm -f *.o *.exe *.res.o *.so *.map\n". "\trm -f *.o *.exe *.res.o *.so *.map\n".
"\n". "\n".
@ -540,7 +540,7 @@ if (defined $makefiles{'borland'}) {
"BCB = \$(MAKEDIR)\\..\n". "BCB = \$(MAKEDIR)\\..\n".
"!endif\n". "!endif\n".
"\n". "\n".
$makefile_extra{'borland'}->{'vars'} . &def($makefile_extra{'borland'}->{'vars'}) .
"\n". "\n".
".c.obj:\n". ".c.obj:\n".
&splitline("\tbcc32 -w-aus -w-ccc -w-par -w-pia \$(COMPAT)". &splitline("\tbcc32 -w-aus -w-ccc -w-par -w-pia \$(COMPAT)".
@ -597,7 +597,7 @@ if (defined $makefiles{'borland'}) {
} }
} }
print "\n"; print "\n";
print $makefile_extra{'borland'}->{'end'} if defined $makefile_extra{'borland'}->{'end'}; print &def($makefile_extra{'borland'}->{'end'});
print "\nclean:\n". print "\nclean:\n".
"\t-del *.obj\n". "\t-del *.obj\n".
"\t-del *.exe\n". "\t-del *.exe\n".
@ -639,7 +639,7 @@ if (defined $makefiles{'vc'}) {
"RCFLAGS = ".(join " ", map {"-I$dirpfx$_"} @srcdirs). "RCFLAGS = ".(join " ", map {"-I$dirpfx$_"} @srcdirs).
" -DWIN32 -D_WIN32 -DWINVER=0x0400\n". " -DWIN32 -D_WIN32 -DWINVER=0x0400\n".
"\n". "\n".
$makefile_extra{'vc'}->{'vars'} . &def($makefile_extra{'vc'}->{'vars'}) .
"\n". "\n".
"\n"; "\n";
print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C")); print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C"));
@ -680,7 +680,7 @@ if (defined $makefiles{'vc'}) {
} }
} }
print "\n"; print "\n";
print $makefile_extra{'vc'}->{'end'} if defined $makefile_extra{'vc'}->{'end'}; print &def($makefile_extra{'vc'}->{'end'});
print "\nclean: tidy\n". print "\nclean: tidy\n".
"\t-del *.exe\n\n". "\t-del *.exe\n\n".
"tidy:\n". "tidy:\n".
@ -1398,7 +1398,7 @@ if (defined $makefiles{'gtk'}) {
print &splitline("\t\$(CC) \$(COMPAT) \$(CFLAGS) \$(XFLAGS) -c $d->{deps}->[0]\n"); print &splitline("\t\$(CC) \$(COMPAT) \$(CFLAGS) \$(XFLAGS) -c $d->{deps}->[0]\n");
} }
print "\n"; print "\n";
print $makefile_extra{'gtk'}->{'end'}; print &def($makefile_extra{'gtk'}->{'end'});
print "\nclean:\n". print "\nclean:\n".
"\trm -f *.o". (join "", map { " $_" } &progrealnames("X:U")) . "\n"; "\trm -f *.o". (join "", map { " $_" } &progrealnames("X:U")) . "\n";
print "\nFORCE:\n"; print "\nFORCE:\n";
@ -1561,7 +1561,7 @@ if (defined $makefiles{'am'}) {
print "endif\n" if $type eq "X"; print "endif\n" if $type eq "X";
print "\n"; print "\n";
} }
print $makefile_extra{'am'}->{'end'}; print &def($makefile_extra{'am'}->{'end'});
select STDOUT; close OUT; select STDOUT; close OUT;
} }
@ -1592,7 +1592,7 @@ if (defined $makefiles{'lcc'}) {
"\n". "\n".
"# Get include directory for resource compiler\n". "# Get include directory for resource compiler\n".
"\n". "\n".
$makefile_extra{'lcc'}->{'vars'} . &def($makefile_extra{'lcc'}->{'vars'}) .
"\n"; "\n";
print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C")); print &splitline("all:" . join "", map { " $_.exe" } &progrealnames("G:C"));
print "\n\n"; print "\n\n";
@ -1623,7 +1623,7 @@ if (defined $makefiles{'lcc'}) {
} }
} }
print "\n"; print "\n";
print $makefile_extra{'lcc'}->{'end'} if defined $makefile_extra{'lcc'}->{'end'}; print &def($makefile_extra{'lcc'}->{'end'});
print "\nclean:\n". print "\nclean:\n".
"\t-del *.obj\n". "\t-del *.obj\n".
"\t-del *.exe\n". "\t-del *.exe\n".
@ -1654,7 +1654,7 @@ if (defined $makefiles{'osx'}) {
"MLDFLAGS = -framework Cocoa\n". "MLDFLAGS = -framework Cocoa\n".
"ULDFLAGS =\n". "ULDFLAGS =\n".
"\n" . "\n" .
$makefile_extra{'osx'}->{'vars'} . &def($makefile_extra{'osx'}->{'vars'}) .
"\n" . "\n" .
&splitline("all:" . join "", map { " $_" } &progrealnames("MX:U")) . &splitline("all:" . join "", map { " $_" } &progrealnames("MX:U")) .
"\n"; "\n";

1
raw.c
View File

@ -146,6 +146,7 @@ static const char *raw_init(void *frontend_handle, void **backend_handle,
raw->closed_on_socket_error = FALSE; raw->closed_on_socket_error = FALSE;
*backend_handle = raw; *backend_handle = raw;
raw->sent_console_eof = raw->sent_socket_eof = FALSE; raw->sent_console_eof = raw->sent_socket_eof = FALSE;
raw->bufsize = 0;
raw->frontend = frontend_handle; raw->frontend = frontend_handle;

View File

@ -543,7 +543,7 @@ void uxsel_input_remove(int id) { }
*/ */
static void usage(void) static void usage(void)
{ {
printf("PuTTY Link: command-line connection utility\n"); printf("Plink: command-line connection utility\n");
printf("%s\n", ver); printf("%s\n", ver);
printf("Usage: plink [options] [user@]host [command]\n"); printf("Usage: plink [options] [user@]host [command]\n");
printf(" (\"host\" can also be a PuTTY saved session name)\n"); printf(" (\"host\" can also be a PuTTY saved session name)\n");

View File

@ -172,7 +172,7 @@ void agent_schedule_callback(void (*callback)(void *, void *, int),
*/ */
static void usage(void) static void usage(void)
{ {
printf("PuTTY Link: command-line connection utility\n"); printf("Plink: command-line connection utility\n");
printf("%s\n", ver); printf("%s\n", ver);
printf("Usage: plink [options] [user@]host [command]\n"); printf("Usage: plink [options] [user@]host [command]\n");
printf(" (\"host\" can also be a PuTTY saved session name)\n"); printf(" (\"host\" can also be a PuTTY saved session name)\n");