summaryrefslogtreecommitdiffstats
path: root/support/nfs/lockdsvc.c
blob: 532e721e09f9f0ca45096fd064faf7f1033b1b13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * support/nfs/nfssvc.c
 *
 * Run an NFS daemon.
 *
 * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
 */

#include "config.h"

#include "nfslib.h"

int
lockdsvc()
{
	struct nfsctl_arg	arg;

	arg.ca_version = NFSCTL_VERSION;
	return nfsctl(LOCKDCTL_SVC, &arg, NULL);
}