diff options
author | 2006-03-25 18:30:55 +0000 | |
---|---|---|
committer | 2006-03-25 18:30:55 +0000 | |
commit | c52aef95a0b7fd365adf9f6028976b4d7f063590 (patch) | |
tree | 342bfd0a0a2f08e067f3dba08d79476595d050f8 /usr.bin/ssh/serverloop.c | |
parent | needed casts (always will be needed) (diff) | |
download | wireguard-openbsd-c52aef95a0b7fd365adf9f6028976b4d7f063590.tar.xz wireguard-openbsd-c52aef95a0b7fd365adf9f6028976b4d7f063590.zip |
spacing
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r-- | usr.bin/ssh/serverloop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c index 7a33787c24c..c16c126e32c 100644 --- a/usr.bin/ssh/serverloop.c +++ b/usr.bin/ssh/serverloop.c @@ -1,4 +1,4 @@ -/* $OpenBSD: serverloop.c,v 1.134 2006/03/25 13:17:02 djm Exp $ */ +/* $OpenBSD: serverloop.c,v 1.135 2006/03/25 18:30:55 deraadt Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -353,7 +353,7 @@ wait_until_can_do_something(fd_set **readsetp, fd_set **writesetp, int *maxfdp, * in buffers and processed later. */ static void -process_input(fd_set * readset) +process_input(fd_set *readset) { int len; char buf[16384]; @@ -412,7 +412,7 @@ process_input(fd_set * readset) * Sends data from internal buffers to client program stdin. */ static void -process_output(fd_set * writeset) +process_output(fd_set *writeset) { struct termios tio; u_char *data; |