summaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authornicm <nicm>2023-04-17 17:58:35 +0000
committernicm <nicm>2023-04-17 17:58:35 +0000
commitbcafe51378b1b16a9a9429d9ad074d5a5d700144 (patch)
tree08cbb706720715865d03dd325588ae974041fce5 /file.c
parent280fe77eddc877f3d0a58ad3195a1e5856ac91c4 (diff)
Make the check if printing is allowed the same as writing which is less
confusing.
Diffstat (limited to 'file.c')
-rw-r--r--file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/file.c b/file.c
index 6c83caac..91698a4c 100644
--- a/file.c
+++ b/file.c
@@ -177,9 +177,9 @@ file_fire_read(struct client_file *cf)
int
file_can_print(struct client *c)
{
- if (c == NULL)
- return (0);
- if (c->session != NULL && (~c->flags & CLIENT_CONTROL))
+ if (c == NULL ||
+ (c->flags & CLIENT_ATTACHED) ||
+ (c->flags & CLIENT_CONTROL))
return (0);
return (1);
}