| Index: net/http/http_auth_handler_negotiate.cc
|
| diff --git a/net/http/http_auth_handler_negotiate.cc b/net/http/http_auth_handler_negotiate.cc
|
| index e6e226d38cba9966383a36539550d829ecbce0b7..a05800a7f0e1ef903837b15a521dee39ae6d53e6 100644
|
| --- a/net/http/http_auth_handler_negotiate.cc
|
| +++ b/net/http/http_auth_handler_negotiate.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/logging.h"
|
| #include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "net/base/address_family.h"
|
| #include "net/base/host_resolver.h"
|
| @@ -168,10 +169,11 @@ std::wstring HttpAuthHandlerNegotiate::CreateSPN(
|
| static const char kSpnSeparator = '@';
|
| #endif
|
| if (port != 80 && port != 443 && use_port_) {
|
| - return ASCIIToWide(StringPrintf("HTTP%c%s:%d", kSpnSeparator,
|
| - server.c_str(), port));
|
| + return ASCIIToWide(base::StringPrintf("HTTP%c%s:%d", kSpnSeparator,
|
| + server.c_str(), port));
|
| } else {
|
| - return ASCIIToWide(StringPrintf("HTTP%c%s", kSpnSeparator, server.c_str()));
|
| + return ASCIIToWide(base::StringPrintf("HTTP%c%s", kSpnSeparator,
|
| + server.c_str()));
|
| }
|
| }
|
|
|
|
|