diff options
author | Andrei Pavel <andrei@isc.org> | 2024-03-04 10:49:45 +0100 |
---|---|---|
committer | Andrei Pavel <andrei@isc.org> | 2024-03-21 17:30:04 +0100 |
commit | 260ad292e87491476c7f34c111d76ef612f151e4 (patch) | |
tree | a340a68aa10a3509f1efbfb64cc2fa84a11f3e4a /src/lib/hooks | |
parent | [#3210] refactor io utilities (diff) | |
download | kea-260ad292e87491476c7f34c111d76ef612f151e4.tar.xz kea-260ad292e87491476c7f34c111d76ef612f151e4.zip |
[#3210] refactor string utilities
- Rename util/strutil.h to util/str.h to escape redundancy.
- Simplify trim function.
- Remove unused functions.
- Get rid of the regex conditional compilation that helped Kea build
with ancient compilers. Lack of proper regex functionality now results
in failure in configure.ac.
Diffstat (limited to 'src/lib/hooks')
-rw-r--r-- | src/lib/hooks/hooks_parser.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hooks/hooks_parser.cc b/src/lib/hooks/hooks_parser.cc index 32296214dc..56029896fe 100644 --- a/src/lib/hooks/hooks_parser.cc +++ b/src/lib/hooks/hooks_parser.cc @@ -10,7 +10,7 @@ #include <cc/dhcp_config_error.h> #include <hooks/hooks_parser.h> #include <boost/algorithm/string.hpp> -#include <util/strutil.h> +#include <util/str.h> #include <vector> using namespace std; |