aboutsummaryrefslogtreecommitdiff
path: root/sbin/dump
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1997-01-08 03:00:42 +0000
committerPeter Wemm <peter@FreeBSD.org>1997-01-08 03:00:42 +0000
commit9e0dc595f6298acd5e61ce33902663308f2896d9 (patch)
tree1efa4d42971310e9b3ea8d9b65e306a21724aa68 /sbin/dump
parent945a70117384b16f78630e5c6ae2b078d7f352a6 (diff)
downloadsrc-9e0dc595f6298acd5e61ce33902663308f2896d9.tar.gz
src-9e0dc595f6298acd5e61ce33902663308f2896d9.zip
Fix double typo
Notes
Notes: svn path=/head/; revision=21413
Diffstat (limited to 'sbin/dump')
-rw-r--r--sbin/dump/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sbin/dump/main.c b/sbin/dump/main.c
index 627516869f50..62d1caf04cb5 100644
--- a/sbin/dump/main.c
+++ b/sbin/dump/main.c
@@ -257,7 +257,7 @@ main(argc, argv)
tape = index(host, ':');
*tape++ = '\0';
#ifdef RDUMP
- if (index(tape, "\n") {
+ if (index(tape, '\n')) {
(void)fprintf(stderr, "invalid characters in tape\n");
exit(X_ABORT);
}