Uploaded image for project: 'RHEL'
  1. RHEL
  2. RHEL-18986

ipa_subdomains_refresh_passkey_done debug message missing new line

    • Icon: Bug Bug
    • Resolution: Done
    • Icon: Undefined Undefined
    • None
    • rhel-9.3.0
    • sssd
    • Minor
    • sst_idm_sssd
    • ssg_idm
    • None
    • False
    • Hide

      None

      Show
      None
    • None

      What were you trying to do that didn't work?

      New line character is missing in /src/providers/ipa/ipa_subdomains.c line {{2793, }}causing debug message to be printed into one single line.

        2776  static void ipa_subdomains_refresh_passkey_done(struct tevent_req *subreq)
        2777  {
        2778  
        2779      struct ipa_subdomains_refresh_state *state;
        2780      struct tevent_req *req;
        2781      errno_t ret;
        2782  
        2783      req = tevent_req_callback_data(subreq, struct tevent_req);
        2784      state = tevent_req_data(req, struct ipa_subdomains_refresh_state);
        2785  
        2786      ret = ipa_subdomains_passkey_recv(subreq);
        2787      talloc_zfree(subreq);
        2788      if (ret != EOK) {
        2789          DEBUG(SSSDBG_MINOR_FAILURE, "Unable to get passkey configuration "
        2790                "[%d]: %s\n", ret, sss_strerror(ret));
        2791          /* Not good, but let's try to continue with other server side options */
        2792          DEBUG(SSSDBG_IMPORTANT_INFO, "Passkey feature is not configured "
        2793                                       "on IPA server");
        2794      }
        2795  
        2796      subreq = ipa_subdomains_master_send(state, state->ev, state->sd_ctx,
        2797                                          sdap_id_op_handle(state->sdap_op));
        2798      if (subreq == NULL) {
        2799          tevent_req_error(req, ENOMEM);
        2800          return;
        2801      }
        2802  
        2803      tevent_req_set_callback(subreq, ipa_subdomains_refresh_master_done, req);
        2804      return;
        2805  }

      Please provide the package NVR for which bug is seen:

      sssd-common-2.9.1-4.el9_3.x86_64

      Expected results

      Actual results

       

            atikhono@redhat.com Alexey Tikhonov
            rhn-support-suwu Sunny Wu
            SSSD Maintainers SSSD Maintainers
            SSSD QE SSSD QE
            Votes:
            0 Vote for this issue
            Watchers:
            11 Start watching this issue

              Created:
              Updated:
              Resolved: