[iptstate-commit] iptstate iptstate.cc,1.18,1.19
Brought to you by:
jaymzh
|
From: Phil D. <ja...@us...> - 2010-01-17 01:26:56
|
Update of /cvsroot/iptstate/iptstate In directory sfp-cvsdas-1.v30.ch3.sourceforge.com:/tmp/cvs-serv31317 Modified Files: iptstate.cc Log Message: s/long long int/long/g One fix from the previous patch that I missed before committing. Signed-off-by: Phil Dibowitz <ph...@ip...> Index: iptstate.cc =================================================================== RCS file: /cvsroot/iptstate/iptstate/iptstate.cc,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- iptstate.cc 16 Jan 2010 23:30:09 -0000 1.18 +++ iptstate.cc 17 Jan 2010 01:26:46 -0000 1.19 @@ -159,7 +159,7 @@ // The max-length of fields in the stable table struct max_t { unsigned int src, dst, proto, state, ttl; - unsigned long long int bytes, packets; + unsigned long bytes, packets; }; struct hook_data { vector<table_t> *stable; |