diff options
-rw-r--r-- | libnetfs/file-get-children.c | 4 | ||||
-rw-r--r-- | libnetfs/file-get-source.c | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/libnetfs/file-get-children.c b/libnetfs/file-get-children.c index e8ceddf3..5a0ddf0e 100644 --- a/libnetfs/file-get-children.c +++ b/libnetfs/file-get-children.c @@ -33,9 +33,7 @@ netfs_S_file_get_children (struct protid *cred, mach_msg_type_number_t *children_len) { error_t err; - if (! cred - || cred->pi.bucket != netfs_port_bucket - || cred->pi.class != netfs_protid_class) + if (! cred) return EOPNOTSUPP; /* check_access performs the same permission check as is normally diff --git a/libnetfs/file-get-source.c b/libnetfs/file-get-source.c index 8b73d5a1..7fa1b4f6 100644 --- a/libnetfs/file-get-source.c +++ b/libnetfs/file-get-source.c @@ -28,9 +28,7 @@ error_t netfs_S_file_get_source (struct protid *cred, char *source) { - if (! cred - || cred->pi.bucket != netfs_port_bucket - || cred->pi.class != netfs_protid_class) + if (! cred) return EOPNOTSUPP; return netfs_get_source (cred, source, 1024 /* XXX */); |