mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-25 06:00:33 +01:00
core: print whether CLAT support is compiled in
At startup, print whether CLAT support is compiled in; it is useful when debugging.
This commit is contained in:
parent
f2ced1e115
commit
de42acd3fd
1 changed files with 2 additions and 8 deletions
|
|
@ -461,14 +461,8 @@ main(int argc, char *argv[])
|
|||
/* the first access to State causes the file to be read (and possibly print a warning) */
|
||||
nm_config_state_get(config);
|
||||
|
||||
nm_log_dbg(LOGD_CORE,
|
||||
"WEXT support is %s",
|
||||
#if HAVE_WEXT
|
||||
"enabled"
|
||||
#else
|
||||
"disabled"
|
||||
#endif
|
||||
);
|
||||
nm_log_dbg(LOGD_CORE, "WEXT support is %s", HAVE_WEXT ? "enabled" : "disabled");
|
||||
nm_log_dbg(LOGD_CORE, "CLAT support is %s", HAVE_CLAT ? "enabled" : "disabled");
|
||||
|
||||
if (!_dbus_manager_init(config))
|
||||
goto done_no_manager;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue