VirtualBox

Ignore:
Timestamp:
Jun 8, 2022 7:43:44 AM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
151730
Message:

libs/openssl: Switched to v3.0.3, bugref:10128

Location:
trunk/src/libs/openssl-3.0.3
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/openssl-3.0.3

    • Property svn:mergeinfo
      •  

        old new  
        1414/vendor/openssl/3.0.1:150323-150324
        1515/vendor/openssl/3.0.2:150728-150729
        16 /vendor/openssl/current:147554-150727
         16/vendor/openssl/3.0.3:151497-151729
         17/vendor/openssl/current:147554-151496
  • trunk/src/libs/openssl-3.0.3/apps/lib/apps.c

    r94404 r95219  
    689689    char *pass_string;
    690690
    691     if (exclude_http && (strncasecmp(uri, "http://", 7) == 0
    692                          || strncasecmp(uri, "https://", 8) == 0)) {
     691    if (exclude_http && (OPENSSL_strncasecmp(uri, "http://", 7) == 0
     692                         || OPENSSL_strncasecmp(uri, "https://", 8) == 0)) {
    693693        BIO_printf(bio_err, "error: HTTP retrieval not allowed for %s\n", desc);
    694694        return ret;
     
    11831183int set_dateopt(unsigned long *dateopt, const char *arg)
    11841184{
    1185     if (strcasecmp(arg, "rfc_822") == 0)
     1185    if (OPENSSL_strcasecmp(arg, "rfc_822") == 0)
    11861186        *dateopt = ASN1_DTFLGS_RFC822;
    1187     else if (strcasecmp(arg, "iso_8601") == 0)
     1187    else if (OPENSSL_strcasecmp(arg, "iso_8601") == 0)
    11881188        *dateopt = ASN1_DTFLGS_ISO8601;
    11891189    return 0;
     
    11921192int set_ext_copy(int *copy_type, const char *arg)
    11931193{
    1194     if (strcasecmp(arg, "none") == 0)
     1194    if (OPENSSL_strcasecmp(arg, "none") == 0)
    11951195        *copy_type = EXT_COPY_NONE;
    1196     else if (strcasecmp(arg, "copy") == 0)
     1196    else if (OPENSSL_strcasecmp(arg, "copy") == 0)
    11971197        *copy_type = EXT_COPY_ADD;
    1198     else if (strcasecmp(arg, "copyall") == 0)
     1198    else if (OPENSSL_strcasecmp(arg, "copyall") == 0)
    11991199        *copy_type = EXT_COPY_ALL;
    12001200    else
     
    12761276
    12771277    for (ptbl = in_tbl; ptbl->name; ptbl++) {
    1278         if (strcasecmp(arg, ptbl->name) == 0) {
     1278        if (OPENSSL_strcasecmp(arg, ptbl->name) == 0) {
    12791279            *flags &= ~ptbl->mask;
    12801280            if (c)
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette