diff options
Diffstat (limited to 'sesman/chansrv/chansrv_fuse.c')
-rw-r--r-- | sesman/chansrv/chansrv_fuse.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sesman/chansrv/chansrv_fuse.c b/sesman/chansrv/chansrv_fuse.c index aa9f4c94..eb60f63a 100644 --- a/sesman/chansrv/chansrv_fuse.c +++ b/sesman/chansrv/chansrv_fuse.c @@ -187,7 +187,7 @@ xrdp_ll_lookup(fuse_req_t req, fuse_ino_t parent, const char *name) struct xfuse_file_info *ffi; struct fuse_entry_param e; - LLOGLN(0, ("xrdp_ll_lookup: name %s", name)); + LLOGLN(10, ("xrdp_ll_lookup: name %s", name)); if (parent != 1) { fuse_reply_err(req, ENOENT); @@ -197,7 +197,7 @@ xrdp_ll_lookup(fuse_req_t req, fuse_ino_t parent, const char *name) ffi = fuse_find_file_info_by_name(g_fuse_files, name); if (ffi != 0) { - LLOGLN(0, ("xrdp_ll_lookup: name %s ino %d", name, ffi->ino)); + LLOGLN(10, ("xrdp_ll_lookup: name %s ino %d", name, ffi->ino)); g_memset(&e, 0, sizeof(e)); e.ino = ffi->ino; e.attr_timeout = 1.0; @@ -217,7 +217,7 @@ xrdp_ll_getattr(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi) struct stat stbuf; struct xfuse_file_info *ffi; - LLOGLN(0, ("xrdp_ll_getattr: ino %d", ino)); + LLOGLN(10, ("xrdp_ll_getattr: ino %d", ino)); g_memset(&stbuf, 0, sizeof(stbuf)); if (ino == 1) { @@ -300,7 +300,7 @@ xrdp_ll_readdir(fuse_req_t req, fuse_ino_t ino, size_t size, struct xfuse_file_info *ffi; struct dirbuf b; - LLOGLN(0, ("xrdp_ll_readdir: ino %d", ino)); + LLOGLN(10, ("xrdp_ll_readdir: ino %d", ino)); if (ino != 1) { fuse_reply_err(req, ENOTDIR); @@ -326,7 +326,7 @@ xrdp_ll_readdir(fuse_req_t req, fuse_ino_t ino, size_t size, static void DEFAULT_CC xrdp_ll_open(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi) { - LLOGLN(0, ("xrdp_ll_open: ino %d", (int)ino)); + LLOGLN(10, ("xrdp_ll_open: ino %d", (int)ino)); if (ino == 1) { fuse_reply_err(req, EISDIR); @@ -351,7 +351,7 @@ xrdp_ll_read(fuse_req_t req, fuse_ino_t ino, size_t size, struct xfuse_file_info *ffi; struct req_list_item *rli; - LLOGLN(0, ("xrdp_ll_read: %d %d %d", (int)ino, (int)off, (int)size)); + LLOGLN(10, ("xrdp_ll_read: %d %d %d", (int)ino, (int)off, (int)size)); ffi = fuse_find_file_info_by_ino(g_fuse_files, ino); if (ffi != 0) { @@ -455,7 +455,7 @@ fuse_add_clip_dir_item(char *filename, int flags, int size, int lindex) struct xfuse_file_info *ffi; struct xfuse_file_info *ffi1; - LLOGLN(0, ("fuse_add_clip_dir_item: adding %s ino %d", filename, g_ino)); + LLOGLN(10, ("fuse_add_clip_dir_item: adding %s ino %d", filename, g_ino)); ffi = g_fuse_files; if (ffi == 0) { @@ -612,7 +612,7 @@ fuse_deinit(void) int APP_CC fuse_file_contents_size(int stream_id, int file_size) { - LLOGLN(0, ("fuse_file_contents_size: file_size %d", file_size)); + LLOGLN(10, ("fuse_file_contents_size: file_size %d", file_size)); return 0; } @@ -622,7 +622,7 @@ fuse_file_contents_range(int stream_id, char *data, int data_bytes) { struct req_list_item *rli; - LLOGLN(0, ("fuse_file_contents_range: data_bytes %d", data_bytes)); + LLOGLN(10, ("fuse_file_contents_range: data_bytes %d", data_bytes)); rli = (struct req_list_item *)list_get_item(g_req_list, 0); if (rli != 0) { |