mirror of
https://github.com/PowerShell/Win32-OpenSSH.git
synced 2025-07-01 11:14:57 +02:00
Reverting unwanted indentation changes
This commit is contained in:
parent
bbc576eeaf
commit
168afecec7
@ -1761,7 +1761,7 @@ channel_handle_wfd(Channel *c, fd_set *readset, fd_set *writeset)
|
|||||||
#ifdef _AIX
|
#ifdef _AIX
|
||||||
/* XXX: Later AIX versions can't push as much data to tty */
|
/* XXX: Later AIX versions can't push as much data to tty */
|
||||||
if (compat20 && c->wfd_isatty)
|
if (compat20 && c->wfd_isatty)
|
||||||
dlen = MIN(dlen, 8 * 1024);
|
dlen = MIN(dlen, 8*1024);
|
||||||
#endif
|
#endif
|
||||||
#ifdef WIN32_FIXME /* TODO - Fix this - on windows we somehow end up with dlen = 0*/
|
#ifdef WIN32_FIXME /* TODO - Fix this - on windows we somehow end up with dlen = 0*/
|
||||||
if (dlen > 0) {
|
if (dlen > 0) {
|
||||||
@ -2448,8 +2448,10 @@ channel_input_extended_data(int type, u_int32_t seq, void *ctxt)
|
|||||||
char *data;
|
char *data;
|
||||||
u_int data_len, tcode;
|
u_int data_len, tcode;
|
||||||
Channel *c;
|
Channel *c;
|
||||||
|
#ifndef WIN32_FIXME
|
||||||
char *respbuf = NULL;
|
char *respbuf = NULL;
|
||||||
size_t resplen = 0;
|
size_t resplen = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Get the channel number and verify it. */
|
/* Get the channel number and verify it. */
|
||||||
id = packet_get_int();
|
id = packet_get_int();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user