Commit 9bbfc004 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Make sure a jailed worker process can open the cached VEXT file

parent 2e956005
......@@ -125,7 +125,7 @@ vext_copyin(struct vsb *vident)
VSB_cat(vp->vsb, ".so");
AZ(VSB_finish(vp->vsb));
fprintf(stderr, "ee2 %s\n", VSB_data(vp->vsb));
fdo = open(VSB_data(vp->vsb), O_WRONLY|O_CREAT|O_EXCL, 0700);
fdo = open(VSB_data(vp->vsb), O_WRONLY|O_CREAT|O_EXCL, 0755);
xxxassert(fdo >= 0);
AZ(lseek(vp->fd, 0, SEEK_SET));
do {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment