From 459357fa4339716810009fea41209ea47460ae2f Mon Sep 17 00:00:00 2001 From: Marc Boucher Date: Sat, 8 Sep 2001 02:16:51 +0000 Subject: Yet another set of string_to_number() fixes. --- extensions/libipt_TOS.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extensions/libipt_TOS.c') diff --git a/extensions/libipt_TOS.c b/extensions/libipt_TOS.c index 0e54a08f..bc3cf760 100644 --- a/extensions/libipt_TOS.c +++ b/extensions/libipt_TOS.c @@ -63,7 +63,7 @@ parse_tos(const unsigned char *s, struct ipt_tos_target_info *info) { unsigned int i, tos; - if (string_to_number(s, 0, 255,tos) != -1) { + if (string_to_number(s, 0, 255, &tos) != -1) { if (tos == IPTOS_LOWDELAY || tos == IPTOS_THROUGHPUT || tos == IPTOS_RELIABILITY -- cgit v1.2.3