diff options
author | Jan Engelhardt <jengelh@inai.de> | 2018-06-27 11:50:41 +0200 |
---|---|---|
committer | Florian Westphal <fw@strlen.de> | 2018-07-02 18:07:13 +0200 |
commit | df0620e7ccb2026a3e18634632f4be5314075906 (patch) | |
tree | aa55ba4bf626cc35d43b3d9a15423c240030e263 /extensions/ebt_standard.c | |
parent | 4f3c04785c807623c483b184e534b935c7580153 (diff) | |
download | ebtables-df0620e7ccb2026a3e18634632f4be5314075906.tar.gz |
extensions: use __attribute__((constructor)) for autoregistration
The ebtables initialization is easier, and, judging from the "static"
recipe in Makefile, that calling ebt_*_register ahead of main is
safe.
This means that a static build won't need the pseudomain hack,
and that -nostartfiles can also go away.
Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'extensions/ebt_standard.c')
-rw-r--r-- | extensions/ebt_standard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/ebt_standard.c b/extensions/ebt_standard.c index 81edead..f3c3308 100644 --- a/extensions/ebt_standard.c +++ b/extensions/ebt_standard.c @@ -84,7 +84,7 @@ static struct ebt_u_target standard = .extra_ops = opts, }; -void _init(void) +static void _INIT(void) { ebt_register_target(&standard); } |