diff options
author | João Valverde <j@v6e.pt> | 2021-07-03 12:58:30 +0100 |
---|---|---|
committer | Wireshark GitLab Utility <gerald+gitlab-utility@wireshark.org> | 2021-07-04 10:37:49 +0000 |
commit | 100876337af28f9e86259e0a17e28d1ea1b737a2 (patch) | |
tree | a366f31adae1393872c124b3fa8719f2d5cd0dd5 /capinfos.c | |
parent | 47d2afd99018b5ef85376e1ff81ee11af4483fa3 (diff) | |
download | wireshark-100876337af28f9e86259e0a17e28d1ea1b737a2.tar.gz wireshark-100876337af28f9e86259e0a17e28d1ea1b737a2.tar.bz2 wireshark-100876337af28f9e86259e0a17e28d1ea1b737a2.zip |
Move version_info.[ch] to ui/
Version info is an aspect of UI implementation so move it to
a more appropriate place, such as ui/. This also helps declutter
the top-level.
A static library is appropriate to encapsulate the dependencies
as private and it is better supported by CMake than object libraries.
Also version_info.h should not be installed as a public header.
Diffstat (limited to 'capinfos.c')
-rw-r--r-- | capinfos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/capinfos.c b/capinfos.c index 9043c25a0f..495554b699 100644 --- a/capinfos.c +++ b/capinfos.c @@ -73,7 +73,7 @@ #include <wsutil/filesystem.h> #include <wsutil/privileges.h> #include <cli_main.h> -#include <version_info.h> +#include <ui/version_info.h> #include <wiretap/wtap_opttypes.h> #ifdef HAVE_PLUGINS |