aboutsummaryrefslogtreecommitdiff
path: root/procfs/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'procfs/main.c')
-rw-r--r--procfs/main.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/procfs/main.c b/procfs/main.c
index 0c87175a..e9e29123 100644
--- a/procfs/main.c
+++ b/procfs/main.c
@@ -254,13 +254,11 @@ netfs_append_args (char **argz, size_t *argz_len)
}
/* The user may define this function. The function must set source to
- the source of CRED. The function may return an EOPNOTSUPP to
- indicate that the concept of a source device is not applicable. The
- default function always returns EOPNOTSUPP. */
-error_t netfs_get_source (struct protid *cred, char *source, size_t source_len)
+ the source of the translator. The function may return an EOPNOTSUPP
+ to indicate that the concept of a source device is not
+ applicable. The default function always returns EOPNOTSUPP. */
+error_t netfs_get_source (char *source, size_t source_len)
{
- if (! cred)
- return EOPNOTSUPP;
snprintf (source, source_len, "proc");
return 0;
}