Skip to content
  • Shivji Jha's avatar
    34759c7a
    Bug #18174719: P_S.REPLICATION_CONNECTION_CONFIGURATION'S COL · 34759c7a
    Shivji Jha authored
                   SSL_CRL_PATH THROWS WARNING 1366
    
    Problem:
    
    The ssl_crl_path option was not set properly for
    replication PS table. We have a temporary variable
    where we have copied values and intended to
    copy the temporary variable back to the crl_path.
    Instead of memcpy(destination, source, len), the
    code contained memcpy(detination, destination, len)
    and hence the garbage value+warning.
    
    Fix:
    
    - Correct the memcpy() call.
    - Made changes in the test accordingly.
    - Minor cleanups in test.
    34759c7a
    Bug #18174719: P_S.REPLICATION_CONNECTION_CONFIGURATION'S COL
    Shivji Jha authored
                   SSL_CRL_PATH THROWS WARNING 1366
    
    Problem:
    
    The ssl_crl_path option was not set properly for
    replication PS table. We have a temporary variable
    where we have copied values and intended to
    copy the temporary variable back to the crl_path.
    Instead of memcpy(destination, source, len), the
    code contained memcpy(detination, destination, len)
    and hence the garbage value+warning.
    
    Fix:
    
    - Correct the memcpy() call.
    - Made changes in the test accordingly.
    - Minor cleanups in test.
Loading