Skip to content

Commit e8fd3de

Browse files
committed
Whitespace cleanup
1 parent 41c3036 commit e8fd3de

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

channels.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ channel_new(struct ssh *ssh, char *ctype, int type, int rfd, int wfd, int efd,
540540
sshbuf_relabel(c->input, "channel input");
541541
sshbuf_type(c->input, BUF_CHANNEL_INPUT);
542542
sshbuf_relabel(c->output, "channel output");
543-
sshbuf_type(c->output, BUF_CHANNEL_OUTPUT);
543+
sshbuf_type(c->output, BUF_CHANNEL_OUTPUT);
544544
sshbuf_relabel(c->extended, "channel extended");
545545
sshbuf_type(c->extended, BUF_CHANNEL_EXTENDED);
546546

sshbuf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ sshbuf_avail(const struct sshbuf *buf)
321321
/* we need to reserve a small amount of overhead on the input buffer
322322
* or we can enter into a pathological state during bulk
323323
* data transfers. We use a fraction of the max size as we want it to scale
324-
* with the size of the input buffer. If we do it for all of the buffers
324+
* with the size of the input buffer. If we do it for all of the buffers
325325
* we fail the regression unit tests. This seems like a reasonable
326326
* solution. Of course, I still need to figure out *why* this is
327327
* happening and come up with an actual fix. TODO

0 commit comments

Comments
 (0)