⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 249196 in webkit


Ignore:
Timestamp:
Aug 28, 2019, 4:43:56 AM (7 years ago)
Author:
Claudio Saavedra
Message:

[SOUP] Fix the debug build after r249192

Unreviewed build fix.

  • platform/network/soup/SoupNetworkSession.cpp:

(WebCore::SoupNetworkSession::setupHSTSEnforcer):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r249194 r249196  
     12019-08-28  Claudio Saavedra  <csaavedra@igalia.com>
     2
     3        [SOUP] Fix the debug build after r249192
     4
     5        Unreviewed build fix.
     6
     7        * platform/network/soup/SoupNetworkSession.cpp:
     8        (WebCore::SoupNetworkSession::setupHSTSEnforcer):
     9
    1102019-08-28  Carlos Garcia Campos  <cgarcia@igalia.com>
    211
  • trunk/Source/WebCore/platform/network/soup/SoupNetworkSession.cpp

    r249192 r249196  
    198198            enforcer = adoptGRef(soup_hsts_enforcer_db_new(dbFilename.get()));
    199199        } else {
    200             RELEASE_LOG_ERROR("Unable to create the HSTS storage directory \"%s\". Using a memory enforcer instead.", hstsStorageDirectory.data());
     200            RELEASE_LOG_ERROR("Unable to create the HSTS storage directory \"%s\". Using a memory enforcer instead.", hstsStorageDirectory().data());
    201201            enforcer = adoptGRef(soup_hsts_enforcer_new());
    202202        }
Note: See TracChangeset for help on using the changeset viewer.