diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-12-19 07:18:57 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-12-19 07:18:57 +0000 |
commit | 4a6c79ff4f05aaae32458104529a9a9e0d3d208b (patch) | |
tree | 913e2f47bf991c8855fa3c28475f2fb77b764baa /usr.bin/ssh/sshtty.c | |
parent | 8130d56a7bb2e09e2c8b782f3f4a54133a0bb161 (diff) |
basic KNF done while i was looking for something else
Diffstat (limited to 'usr.bin/ssh/sshtty.c')
-rw-r--r-- | usr.bin/ssh/sshtty.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshtty.c b/usr.bin/ssh/sshtty.c index 78498908fc6..eed8cfdc21b 100644 --- a/usr.bin/ssh/sshtty.c +++ b/usr.bin/ssh/sshtty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshtty.c,v 1.1 2001/04/14 16:33:20 stevesk Exp $ */ +/* $OpenBSD: sshtty.c,v 1.2 2001/12/19 07:18:56 deraadt Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -46,7 +46,7 @@ static int _in_raw_mode = 0; int in_raw_mode(void) { - return _in_raw_mode; + return _in_raw_mode; } struct termios |