diff options
author | Joe Perches <joe@perches.com> | 2010-01-11 05:53:31 -0500 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2010-01-11 05:53:31 -0500 |
commit | a79e7ac4ad77e1833e8f69e99113204d03018255 (patch) | |
tree | 7f463b00f42c4acebb23268cf455f1c4517d64b9 | |
parent | c299bd53aa2616e6afc304b4f848186af3b3a881 (diff) |
ipvs: use standardized format in sprintf
Use the same format string as net/ipv4/netfilter/nf_nat_ftp.c
to encode an ipv4 address and port.
Both uses should be a single common function.
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Patrick McHardy <kaber@trash.net>
-rw-r--r-- | net/netfilter/ipvs/ip_vs_ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/ipvs/ip_vs_ftp.c b/net/netfilter/ipvs/ip_vs_ftp.c index 33e2c799cba7..73f38ea98f25 100644 --- a/net/netfilter/ipvs/ip_vs_ftp.c +++ b/net/netfilter/ipvs/ip_vs_ftp.c | |||
@@ -208,7 +208,7 @@ static int ip_vs_ftp_out(struct ip_vs_app *app, struct ip_vs_conn *cp, | |||
208 | */ | 208 | */ |
209 | from.ip = n_cp->vaddr.ip; | 209 | from.ip = n_cp->vaddr.ip; |
210 | port = n_cp->vport; | 210 | port = n_cp->vport; |
211 | sprintf(buf, "%d,%d,%d,%d,%d,%d", NIPQUAD(from.ip), | 211 | sprintf(buf, "%u,%u,%u,%u,%u,%u", NIPQUAD(from.ip), |
212 | (ntohs(port)>>8)&255, ntohs(port)&255); | 212 | (ntohs(port)>>8)&255, ntohs(port)&255); |
213 | buf_len = strlen(buf); | 213 | buf_len = strlen(buf); |
214 | 214 | ||