[elephant-cvs] CVS elephant/src/db-bdb
ieslick
ieslick at common-lisp.net
Sun Apr 30 01:02:23 UTC 2006
Update of /project/elephant/cvsroot/elephant/src/db-bdb
In directory clnet:/tmp/cvs-serv29635
Modified Files:
bdb-controller.lisp
Log Message:
BUGFIX: specs with pathnames instead of strings fail in open-store
--- /project/elephant/cvsroot/elephant/src/db-bdb/bdb-controller.lisp 2006/04/26 17:53:44 1.7
+++ /project/elephant/cvsroot/elephant/src/db-bdb/bdb-controller.lisp 2006/04/30 01:02:22 1.8
@@ -59,7 +59,7 @@
(let ((env (db-env-create)))
;; thread stuff?
(setf (controller-environment sc) env)
- (db-env-open env (second (controller-spec sc))
+ (db-env-open env (namestring (second (controller-spec sc)))
:create t :init-txn t :init-lock t
:init-mpool t :init-log t :thread thread
:recover recover :recover-fatal recover-fatal)
More information about the Elephant-cvs
mailing list