summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2003-05-06 22:13:22 +0000
committermillert <millert@openbsd.org>2003-05-06 22:13:22 +0000
commit4c2bf8ab41e7c03fea5e775865ccd2a1e1ef4215 (patch)
treea79fb2b4a1af49c461ab6316856be82be34af73b
parentuse POSIX regex (diff)
downloadwireguard-openbsd-4c2bf8ab41e7c03fea5e775865ccd2a1e1ef4215.tar.xz
wireguard-openbsd-4c2bf8ab41e7c03fea5e775865ccd2a1e1ef4215.zip
Whoops, forgot a return statement in last commit
-rw-r--r--usr.bin/rdist/docmd.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/rdist/docmd.c b/usr.bin/rdist/docmd.c
index 5772c5bb36b..f9631ac0bdc 100644
--- a/usr.bin/rdist/docmd.c
+++ b/usr.bin/rdist/docmd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: docmd.c,v 1.14 2003/05/06 22:10:11 millert Exp $ */
+/* $OpenBSD: docmd.c,v 1.15 2003/05/06 22:13:22 millert Exp $ */
/*
* Copyright (c) 1983 Regents of the University of California.
@@ -39,7 +39,7 @@ static char RCSid[] =
"$From: docmd.c,v 6.86 1996/01/30 02:29:43 mcooper Exp $";
#else
static char RCSid[] =
-"$OpenBSD: docmd.c,v 1.14 2003/05/06 22:10:11 millert Exp $";
+"$OpenBSD: docmd.c,v 1.15 2003/05/06 22:13:22 millert Exp $";
#endif
static char sccsid[] = "@(#)docmd.c 5.1 (Berkeley) 6/6/85";
@@ -860,6 +860,7 @@ extern int except(file)
sizeof(ebuf));
error("Regex error \"%s\" for \"%s\".",
ebuf, nl->n_name);
+ return(0);
}
}
}