• Show log

    Commit

  • Hash : ebade233
    Author : Patrick Steinhardt
    Date : 2020-02-24T21:49:43

    transports: auth_ntlm: fix use of strdup/strndup
    
    In the NTLM authentication code, we accidentally use strdup(3P) and
    strndup(3P) instead of our own wrappers git__strdup and git__strndup,
    respectively.
    
    Fix the issue by using our own functions.