diff options
author | phk <phk@FreeBSD.org> | 1995-12-26 09:43:40 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1995-12-26 09:43:40 +0000 |
commit | 88d76e5717405404bf4e50dd9171a8bfb7457af8 (patch) | |
tree | 1399b01acbeeed7d686168b3f5a1fc2532debd75 /usr.sbin/ctm | |
parent | 2be77fc4944ca32d660b0db51eef5167c35d0b01 (diff) | |
download | FreeBSD-src-88d76e5717405404bf4e50dd9171a8bfb7457af8.zip FreeBSD-src-88d76e5717405404bf4e50dd9171a8bfb7457af8.tar.gz |
typo in my last commit.
Diffstat (limited to 'usr.sbin/ctm')
-rw-r--r-- | usr.sbin/ctm/ctm_rmail/ctm_rmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/ctm/ctm_rmail/ctm_rmail.c b/usr.sbin/ctm/ctm_rmail/ctm_rmail.c index 34bb6aa..bbb1cea 100644 --- a/usr.sbin/ctm/ctm_rmail/ctm_rmail.c +++ b/usr.sbin/ctm/ctm_rmail/ctm_rmail.c @@ -281,7 +281,7 @@ read_piece(char *input_file) */ i = strlen(line) - 1; while (i > 0 && isspace(line[i])) - line[--i] = '\0'; + line[i--] = '\0'; /* * Look for the beginning of an encoded piece. |