diff options
author | 2001-01-07 21:26:55 +0000 | |
---|---|---|
committer | 2001-01-07 21:26:55 +0000 | |
commit | 69ee9e743b862b317b15f77d2e63ac4f394f2315 (patch) | |
tree | 939412ce64c8d49e7e41f1fdaf69aac0d61a3628 /usr.bin/ssh/cli.c | |
parent | fix a few scsi_done() usages. (diff) | |
download | wireguard-openbsd-69ee9e743b862b317b15f77d2e63ac4f394f2315.tar.xz wireguard-openbsd-69ee9e743b862b317b15f77d2e63ac4f394f2315.zip |
typo
Diffstat (limited to 'usr.bin/ssh/cli.c')
-rw-r--r-- | usr.bin/ssh/cli.c | 4 |
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; } } |