aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--acid/3864
-rw-r--r--src/cmd/acid/builtin.c1
2 files changed, 3 insertions, 2 deletions
diff --git a/acid/386 b/acid/386
index bc045601..12081ebd 100644
--- a/acid/386
+++ b/acid/386
@@ -175,7 +175,7 @@ linkdebug()
defn
dynamicmap()
{
- if systype == "linux" then {
+ if systype == "linux" || systype == "freebsd" then {
local r, m, n;
r = linkdebug();
@@ -185,7 +185,7 @@ dynamicmap()
n = 0;
while m != 0 && n < 100 do {
complex Linkmap m;
- if m.name && *(m.name\b) then
+ if m.name && *(m.name\b) && access(*(m.name\s)) then
textfile({*(m.name\s), m.addr\X});
m = m.next;
n = n+1;
diff --git a/src/cmd/acid/builtin.c b/src/cmd/acid/builtin.c
index 492fdfb4..290b3c69 100644
--- a/src/cmd/acid/builtin.c
+++ b/src/cmd/acid/builtin.c
@@ -633,6 +633,7 @@ doaccess(Node *r, Node *args)
r->op = OCONST;
r->type = TINT;
+ r->store.fmt = 'D';
r->store.u.ival = 0;
if(access(res.store.u.string->string, 4) == 0)
r->store.u.ival = 1;