Add identifier (device.node) to the EPLF listing

Probably not used by WebKit either...
This commit is contained in:
François Revol 2014-07-27 01:13:10 +02:00
parent 9535708ba4
commit 948a1bb3ce
1 changed files with 4 additions and 0 deletions

View File

@ -139,6 +139,10 @@ BFileRequest::_ProtocolLoop()
if (entry.GetPermissions(&permissions) == B_OK)
eplf << "up" << BString().SetToFormat("%03o", permissions) << ",";
node_ref ref;
if (entry.GetNodeRef(&ref) == B_OK)
eplf << "i" << ref.device << "." << ref.node << ",";
entry.GetName(name);
eplf << "\t" << name << "\r\n";
if (fListener != NULL) {