aboutsummaryrefslogtreecommitdiff
path: root/sys/coda
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2005-08-08 19:55:32 +0000
committerRobert Watson <rwatson@FreeBSD.org>2005-08-08 19:55:32 +0000
commit6a113b3de785c1852adc7ec1bc80413c4e26c8f7 (patch)
treed655c312aefcf63bff80cd1977af84d2c685fd16 /sys/coda
parent6eb1d21f148591174f3720af272ab142685b4473 (diff)
Notes
Diffstat (limited to 'sys/coda')
-rw-r--r--sys/coda/coda_fbsd.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/coda/coda_fbsd.c b/sys/coda/coda_fbsd.c
index ac6ad48e8599d..dd379d7a46649 100644
--- a/sys/coda/coda_fbsd.c
+++ b/sys/coda/coda_fbsd.c
@@ -70,8 +70,8 @@ int vcdebug = 1;
#define VCDEBUG if (vcdebug) printf
/* for DEVFS, using bpf & tun drivers as examples*/
-static void coda_fbsd_clone(void *arg, char *name, int namelen,
- struct cdev **dev);
+static void coda_fbsd_clone(void *arg, struct ucred *cred, char *name,
+ int namelen, struct cdev **dev);
static int
codadev_modevent(module_t mod, int type, void *data)
@@ -105,8 +105,9 @@ static moduledata_t codadev_mod = {
};
DECLARE_MODULE(codadev, codadev_mod, SI_SUB_DRIVERS, SI_ORDER_MIDDLE);
-static void coda_fbsd_clone(arg, name, namelen, dev)
+static void coda_fbsd_clone(arg, cred, name, namelen, dev)
void *arg;
+ struct ucred *cred;
char *name;
int namelen;
struct cdev **dev;