summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2002-02-24 18:31:10 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2002-02-24 18:31:10 +0000
commit859d6959284c883a175aeca9711c96111baecda0 (patch)
tree292e8e73b5a05450c12bf14d26576530b23e7aae /usr.bin
parentbf7f75667ea10ed4b7c5862231ef4b926ec8c070 (diff)
typo in comment
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/uuencode.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/uuencode.c b/usr.bin/ssh/uuencode.c
index 1be975a6c4e..bd1891f3b39 100644
--- a/usr.bin/ssh/uuencode.c
+++ b/usr.bin/ssh/uuencode.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uuencode.c,v 1.12 2001/03/01 02:27:18 deraadt Exp $ */
+/* $OpenBSD: uuencode.c,v 1.13 2002/02/24 18:31:09 markus Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
@@ -30,7 +30,7 @@
#include <resolv.h>
-RCSID("$OpenBSD: uuencode.c,v 1.12 2001/03/01 02:27:18 deraadt Exp $");
+RCSID("$OpenBSD: uuencode.c,v 1.13 2002/02/24 18:31:09 markus Exp $");
int
uuencode(u_char *src, u_int srclength,
@@ -52,7 +52,7 @@ uudecode(const char *src, u_char *target, size_t targsize)
;
for (; *p != '\0' && *p != ' ' && *p != '\t'; p++)
;
- /* and remote trailing whitespace because __b64_pton needs this */
+ /* and remove trailing whitespace because __b64_pton needs this */
*p = '\0';
len = __b64_pton(encoded, target, targsize);
xfree(encoded);