summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-10-09 20:33:15 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-10-09 20:33:15 +0000
commit7fcf87ae838eb647adece2ab2a584e89983561d8 (patch)
treee84e6ab632a2a44393ca5dfa7b94eeed7681703f /sbin
parent765f0badf8c2d18c36266767d34bb7c49d1b7b67 (diff)
Remove errant semicolon introduced in rev 1.60; joshua stein
Diffstat (limited to 'sbin')
-rw-r--r--sbin/mountd/mountd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/mountd/mountd.c b/sbin/mountd/mountd.c
index c5ee03a41a6..0c0cce75535 100644
--- a/sbin/mountd/mountd.c
+++ b/sbin/mountd/mountd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mountd.c,v 1.60 2003/09/26 16:09:27 deraadt Exp $ */
+/* $OpenBSD: mountd.c,v 1.61 2003/10/09 20:33:14 millert Exp $ */
/* $NetBSD: mountd.c,v 1.31 1996/02/18 11:57:53 fvdl Exp $ */
/*
@@ -939,7 +939,7 @@ get_exportlist(void)
if (hpe == NULL)
out_of_mem();
hpe->h_name = strdup("Default");
- if (hpe->h_name == NULL);
+ if (hpe->h_name == NULL)
out_of_mem();
hpe->h_addrtype = AF_INET;
hpe->h_length = sizeof (u_int32_t);