diff options
author | Gerald Carter <jerry@samba.org> | 2003-01-02 18:20:01 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-01-02 18:20:01 +0000 |
commit | 37742eb13f2822aea8795b33f96bea951ef05246 (patch) | |
tree | 1b00dd01fc7c41851b558fb4c383e365744ce156 /source3 | |
parent | 0ef57b2aadf835fc8c13b80086ac4bb0e8a53c2b (diff) | |
download | samba-37742eb13f2822aea8795b33f96bea951ef05246.tar.gz samba-37742eb13f2822aea8795b33f96bea951ef05246.tar.bz2 samba-37742eb13f2822aea8795b33f96bea951ef05246.zip |
WITH_SENDFILE #ifdef merged from SAMBA_2_2
(This used to be commit aef9af7874aab8289a8cb577a2513038c00dd6f5)
Diffstat (limited to 'source3')
-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); |