Skip to content

Commit

Permalink
Force use of server in DoT case
Browse files Browse the repository at this point in the history
  • Loading branch information
thalman committed Nov 12, 2024
1 parent 3da1bd7 commit 2010bd9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/providers/ldap/sdap_dyndns.c
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,10 @@ sdap_dyndns_update_ptr_step(struct tevent_req *req)

servername = NULL;
realm = NULL;
if (dp_opt_get_bool(state->opts, DP_OPT_DYNDNS_DOT) == true && state->servername != NULL) {
/* in DoT we have to set the server */
state->fallback_mode = true;
}
if (state->fallback_mode == true) {
servername = state->servername;
realm = state->realm;
Expand Down

0 comments on commit 2010bd9

Please sign in to comment.