diff options
author | Bernd Schubert <bschubert@ddn.com> | 2024-12-17 20:21:09 +0100 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-12-18 09:28:18 +0100 |
commit | c9b9ca09e0e5e4fc3c648eda795f45122a1c323b (patch) | |
tree | 63f6686a450d5402f1f162cab4c63948b99d212a /lib/fuse.c | |
parent | 752b59ac087658adb50d50a492d228d53081d195 (diff) | |
download | libfuse-c9b9ca09e0e5e4fc3c648eda795f45122a1c323b.tar.gz |
Rename _int to _internal
_int can be confused with 'integer'
Diffstat (limited to 'lib/fuse.c')
-rw-r--r-- | lib/fuse.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -4550,13 +4550,14 @@ static int fuse_session_loop_remember(struct fuse *f) else break; } else if (res > 0) { - res = fuse_session_receive_buf_int(se, &fbuf, NULL); + res = fuse_session_receive_buf_internal(se, &fbuf, + NULL); if (res == -EINTR) continue; if (res <= 0) break; - fuse_session_process_buf_int(se, &fbuf, NULL); + fuse_session_process_buf_internal(se, &fbuf, NULL); } else { timeout = fuse_clean_cache(f); curr_time(&now); @@ -4774,7 +4775,7 @@ void fuse_lib_help(struct fuse_args *args) fuse_lib_opt_proc) == -1 || !conf.modules) return; - + char *module; char *next; struct fuse_module *m; @@ -4792,8 +4793,6 @@ void fuse_lib_help(struct fuse_args *args) } } - - static int fuse_init_intr_signal(int signum, int *installed) { struct sigaction old_sa; |