Index: remoting/protocol/auth_util.cc |
=================================================================== |
--- remoting/protocol/auth_util.cc (revision 126517) |
+++ remoting/protocol/auth_util.cc (working copy) |
@@ -47,7 +47,7 @@ |
// Get keying material from SSL. |
unsigned char key_material[kAuthDigestLength]; |
int export_result = socket->ExportKeyingMaterial( |
- label, "", key_material, kAuthDigestLength); |
+ label, false, "", key_material, kAuthDigestLength); |
wtc
2012/03/14 03:35:46
Here we're using no context (""), so the new has_c
|
if (export_result != net::OK) { |
LOG(ERROR) << "Error fetching keying material: " << export_result; |
return std::string(); |