diff options
author | 2006-03-19 18:59:49 +0000 | |
---|---|---|
committer | 2006-03-19 18:59:49 +0000 | |
commit | ce9a880547040cd8b9642f2531cd02ccfc0813af (patch) | |
tree | 6f928861d3e8366216f39fe49878ba4c4172d1e1 /usr.bin/ssh/ssh-keyscan.c | |
parent | spacing (diff) | |
download | wireguard-openbsd-ce9a880547040cd8b9642f2531cd02ccfc0813af.tar.xz wireguard-openbsd-ce9a880547040cd8b9642f2531cd02ccfc0813af.zip |
please lint
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index fd2708e0af6..94e10da8ac8 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/ssh-keyscan.c @@ -130,7 +130,7 @@ Linebuf_alloc(const char *filename, void (*errfun) (const char *,...)) lb->stream = stdin; } - if (!(lb->buf = malloc(lb->size = LINEBUF_SIZE))) { + if (!(lb->buf = malloc((lb->size = LINEBUF_SIZE)))) { if (errfun) (*errfun) ("linebuf (%s): malloc failed\n", lb->filename); xfree(lb); @@ -595,7 +595,6 @@ conread(int s) keyprint(c, keygrab_ssh1(c)); confree(s); return; - break; default: fatal("conread: invalid status %d", c->c_status); break; |