summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2001-01-07 21:26:56 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2001-01-07 21:26:56 +0000
commit79fae5a1b189219ba900bccebcf7c3efde1bcf57 (patch)
tree006ea8ea2231c4a3399c0debb8d7e9ae486de869
parent81551c1d02a3de5566901edf633f9e3f5c03421a (diff)
typo
-rw-r--r--usr.bin/ssh/cli.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/cli.c b/usr.bin/ssh/cli.c
index 05f061b0e03..cc7bc90cd68 100644
--- a/usr.bin/ssh/cli.c
+++ b/usr.bin/ssh/cli.c
@@ -1,5 +1,5 @@
#include "includes.h"
-RCSID("$OpenBSD: cli.c,v 1.3 2001/01/07 19:04:47 markus Exp $");
+RCSID("$OpenBSD: cli.c,v 1.4 2001/01/07 21:26:55 markus Exp $");
#include "xmalloc.h"
#include "ssh.h"
@@ -147,7 +147,7 @@ cli_write(char* buf, int size)
for (pos = 0; pos < len; pos += ret) {
ret = write(cli_output, output + pos, len - pos);
if (ret == -1) {
- xfree(output)
+ xfree(output);
return -1;
}
}