Change variable name to have an homogeneous naming
authorEric Leblond <eric@inl.fr>
Fri, 31 Oct 2008 12:07:56 +0000 (13:07 +0100)
committerr.kubiak <r.kubiak@samsung.com>
Mon, 16 Nov 2015 13:12:05 +0000 (14:12 +0100)
This patch modifies a function to have through the file. Data length
variable was named data_len everywhere but in this function.

Signed-off-by: Eric Leblond <eric@inl.fr>
src/libnetfilter_queue.c

index 5db6fd1..e7fbfcc 100644 (file)
@@ -529,9 +529,9 @@ int nfq_set_verdict(struct nfq_q_handle *qh, u_int32_t id,
  */
 int nfq_set_verdict_mark(struct nfq_q_handle *qh, u_int32_t id,
                u_int32_t verdict, u_int32_t mark,
-               u_int32_t datalen, unsigned char *buf)
+               u_int32_t data_len, unsigned char *buf)
 {
-       return __set_verdict(qh, id, verdict, mark, 1, datalen, buf);
+       return __set_verdict(qh, id, verdict, mark, 1, data_len, buf);
 }
 
 /*************************************************************