diff options
Diffstat (limited to 'net/coda_client/patches/patch-ae')
-rw-r--r-- | net/coda_client/patches/patch-ae | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/net/coda_client/patches/patch-ae b/net/coda_client/patches/patch-ae new file mode 100644 index 00000000000..b18f7fb8a84 --- /dev/null +++ b/net/coda_client/patches/patch-ae @@ -0,0 +1,24 @@ +$NetBSD: patch-ae,v 1.1 1998/10/05 23:06:15 rvb Exp $ + +Index: coda-src/venus/worker.cc +=================================================================== +RCS file: /afs/cs/project/coda-src/cvs/coda/coda-src/venus/worker.cc,v +retrieving revision 4.17.4.2 +diff -u -r4.17.4.2 worker.cc +--- worker.cc 1998/10/05 02:09:40 4.17.4.2 ++++ worker.cc 1998/10/05 15:50:36 +@@ -290,9 +290,11 @@ + #endif /* __MACH__ */ + #ifdef __BSD44__ + if (mount("coda", venusRoot, 0, kernDevice) < 0) { +- eprint("mount(%s, %s) failed (%d), exiting", +- kernDevice, venusRoot, errno); +- exit(-1); ++ if (mount("cfs", venusRoot, 0, kernDevice) < 0) { ++ eprint("mount(%s, %s) failed (%d), exiting", ++ kernDevice, venusRoot, errno); ++ exit(-1); ++ } + } + #endif /* __BSD44__ */ + #ifdef __linux__ |