diff options
Diffstat (limited to 'options.h')
-rw-r--r-- | options.h | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -319,6 +319,9 @@ struct options int management_state_buffer_size; const char *management_write_peer_info_file; + const char *management_client_user; + const char *management_client_group; + /* Mask of MF_ values of manage.h */ unsigned int management_flags; #endif @@ -610,9 +613,9 @@ char *options_string (const struct options *o, bool remote, struct gc_arena *gc); -int options_cmp_equal_safe (char *actual, const char *expected, size_t actual_n); +bool options_cmp_equal_safe (char *actual, const char *expected, size_t actual_n); void options_warning_safe (char *actual, const char *expected, size_t actual_n); -int options_cmp_equal (char *actual, const char *expected); +bool options_cmp_equal (char *actual, const char *expected); void options_warning (char *actual, const char *expected); #endif |