summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEric Leblond <eric@inl.fr>2008-10-31 13:07:56 +0100
committerEric Leblond <eric@inl.fr>2008-12-19 22:26:29 +0100
commitdc1c5d9a99aa785bb35d60d32512e4bbde75a856 (patch)
treecc81a780c5cf7e37c23842a6c5936ed43da60608 /src
parent37c6a83e0745268c75ff99544aed9596d6c6b048 (diff)
Change variable name to have an homogeneous naming
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>
Diffstat (limited to 'src')
-rw-r--r--src/libnetfilter_queue.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libnetfilter_queue.c b/src/libnetfilter_queue.c
index 5db6fd1..e7fbfcc 100644
--- a/src/libnetfilter_queue.c
+++ b/src/libnetfilter_queue.c
@@ -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);
}
/*************************************************************