aboutsummaryrefslogtreecommitdiff
path: root/net/samba411/files/patch-source3_modules_vfs__virusfilter__utils.c
blob: 6e6dc6d2bae532ed785ab41e30f051b1353bebeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
--- source3/modules/vfs_virusfilter_utils.c.orig	2019-01-15 10:07:00 UTC
+++ source3/modules/vfs_virusfilter_utils.c
@@ -392,6 +392,10 @@ bool virusfilter_io_writel(
 
 bool virusfilter_io_writefl(
 	struct virusfilter_io_handle *io_h,
+	const char *data_fmt, ...) PRINTF_ATTRIBUTE(2, 3);
+
+bool virusfilter_io_writefl(
+	struct virusfilter_io_handle *io_h,
 	const char *data_fmt, ...)
 {
 	va_list ap;
@@ -415,6 +419,10 @@ bool virusfilter_io_writefl(
 
 bool virusfilter_io_vwritefl(
 	struct virusfilter_io_handle *io_h,
+	const char *data_fmt, va_list ap) PRINTF_ATTRIBUTE(2, 0);
+
+bool virusfilter_io_vwritefl(
+	struct virusfilter_io_handle *io_h,
 	const char *data_fmt, va_list ap)
 {
 	char data[VIRUSFILTER_IO_BUFFER_SIZE + VIRUSFILTER_IO_EOL_SIZE];
@@ -666,6 +674,11 @@ bool virusfilter_io_readl(TALLOC_CTX *ct
 bool virusfilter_io_writefl_readl(
 	struct virusfilter_io_handle *io_h,
 	char **read_line,
+	const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
+
+bool virusfilter_io_writefl_readl(
+	struct virusfilter_io_handle *io_h,
+	char **read_line,
 	const char *fmt, ...)
 {
 	bool ok;