diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-10-09 20:33:15 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-10-09 20:33:15 +0000 |
commit | 7fcf87ae838eb647adece2ab2a584e89983561d8 (patch) | |
tree | e84e6ab632a2a44393ca5dfa7b94eeed7681703f /sbin | |
parent | 765f0badf8c2d18c36266767d34bb7c49d1b7b67 (diff) |
Remove errant semicolon introduced in rev 1.60; joshua stein
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/mountd/mountd.c | 4 |
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); |