diff options
author | Gerald Carter <jerry@samba.org> | 2003-01-02 18:20:42 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-01-02 18:20:42 +0000 |
commit | 57120dce63fdd5f90400e34b3e6617e885427499 (patch) | |
tree | 08c13cc4e8e720dd669cade70545847d208a4eb4 | |
parent | 56ebce6b6dfc901209d3274ca150ebfbff1a4902 (diff) | |
download | samba-57120dce63fdd5f90400e34b3e6617e885427499.tar.gz samba-57120dce63fdd5f90400e34b3e6617e885427499.tar.xz samba-57120dce63fdd5f90400e34b3e6617e885427499.zip |
WITH_SENDFILE #ifdef merged from SAMBA_2_2
(This used to be commit 5023aec5ada4a0d84878440ed67411b6a6b97ca2)
-rw-r--r-- | source3/utils/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/status.c b/source3/utils/status.c index c84f8c267a..094dc0ff1c 100644 --- a/source3/utils/status.c +++ b/source3/utils/status.c @@ -173,7 +173,7 @@ static int profile_dump(void) d_printf("write_count: %u\n", profile_p->syscall_write_count); d_printf("write_time: %u\n", profile_p->syscall_write_time); d_printf("write_bytes: %u\n", profile_p->syscall_write_bytes); -#ifdef HAVE_SENDFILE +#ifdef WITH_SENDFILE d_printf("sendfile_count: %u\n", profile_p->syscall_sendfile_count); d_printf("sendfile_time: %u\n", profile_p->syscall_sendfile_time); d_printf("sendfile_bytes: %u\n", profile_p->syscall_sendfile_bytes); |