Signed-off-by: Steve Dickson <steved@xxxxxxxxxx> --- utils/statd/statd.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/utils/statd/statd.c b/utils/statd/statd.c index 8c51bcc..8f31111 100644 --- a/utils/statd/statd.c +++ b/utils/statd/statd.c @@ -238,12 +238,6 @@ int main (int argc, char **argv) /* Set hostname */ MY_NAME = NULL; - /* Refuse to start if another statd is running */ - if (nfs_probe_statd()) { - fprintf(stderr, "Statd service already running!\n"); - exit(1); - } - /* Process command line switches */ while ((arg = getopt_long(argc, argv, "h?vVFNH:dn:p:o:P:L", longopts, NULL)) != EOF) { switch (arg) { @@ -306,6 +300,12 @@ int main (int argc, char **argv) } } + /* Refuse to start if another statd is running */ + if (nfs_probe_statd()) { + fprintf(stderr, "Statd service already running!\n"); + exit(1); + } + if (port == out_port && port != 0) { fprintf(stderr, "Listening and outgoing ports cannot be the same!\n"); exit(-1); -- 1.8.3.1 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html