Commit db9c8e2b authored by wangzhitong's avatar wangzhitong Committed by David S. Miller

NET: IPV4: fix error "do not initialise globals to 0"

this patch fixes below Errors reported by checkpatch
    ERROR: do not initialise globals to 0
    +int cipso_v4_rbm_optfmt = 0;
Signed-off-by: default avatarwangzhitong <wangzhitong@uniontech.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent aed0826b
......@@ -73,7 +73,7 @@ struct cipso_v4_map_cache_entry {
static struct cipso_v4_map_cache_bkt *cipso_v4_cache;
/* Restricted bitmap (tag #1) flags */
int cipso_v4_rbm_optfmt = 0;
int cipso_v4_rbm_optfmt;
int cipso_v4_rbm_strictvalid = 1;
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment