@@ -327,22 +327,22 @@ prepareLogWithRequestDetails(HttpRequest *request, const AccessLogEntryPointer &
327327 if (Config.onoff .log_mime_hdrs ) {
328328 MemBuf mb;
329329 mb.init ();
330- request->header .packInto (&mb, Security:: MaskSensitiveInfo::off);
330+ request->header .packInto (&mb, MaskSensitiveInfo::off);
331331 // This is the request after adaptation or redirection
332332 aLogEntry->headers .adapted_request = xstrdup (mb.buf );
333333
334334 // the virgin request is saved to aLogEntry->request
335335 if (aLogEntry->request ) {
336336 mb.reset ();
337- aLogEntry->request ->header .packInto (&mb, Security:: MaskSensitiveInfo::off);
337+ aLogEntry->request ->header .packInto (&mb, MaskSensitiveInfo::off);
338338 aLogEntry->headers .request = xstrdup (mb.buf );
339339 }
340340
341341#if USE_ADAPTATION
342342 const Adaptation::History::Pointer ah = request->adaptLogHistory ();
343343 if (ah != nullptr ) {
344344 mb.reset ();
345- ah->lastMeta .packInto (&mb, Security:: MaskSensitiveInfo::off);
345+ ah->lastMeta .packInto (&mb, MaskSensitiveInfo::off);
346346 aLogEntry->adapt .last_meta = xstrdup (mb.buf );
347347 }
348348#endif
@@ -724,7 +724,7 @@ clientPackRangeHdr(const HttpReplyPointer &rep, const HttpHdrRangeSpec * spec, S
724724
725725 httpHeaderAddContRange (&hdr, *spec, rep->content_length );
726726
727- hdr.packInto (mb, Security:: MaskSensitiveInfo::off);
727+ hdr.packInto (mb, MaskSensitiveInfo::off);
728728 hdr.clean ();
729729
730730 /* append <crlf> (we packed a header, not a reply) */
0 commit comments