mirror of https://github.com/hak5/openwrt.git
modules: swconfig.c: update the error path on 3.13, and behave nicely with return
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 39360lede-17.01
parent
4d26250db1
commit
f3c07b8621
|
@ -1121,13 +1121,12 @@ swconfig_init(void)
|
|||
if (err)
|
||||
goto unregister;
|
||||
}
|
||||
|
||||
return 0;
|
||||
#else
|
||||
err = genl_register_family_with_ops(&switch_fam, swconfig_ops);
|
||||
if (err)
|
||||
goto unregister;
|
||||
return err;
|
||||
#endif
|
||||
return 0;
|
||||
|
||||
unregister:
|
||||
genl_unregister_family(&switch_fam);
|
||||
|
|
Loading…
Reference in New Issue