mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-21 09:30:55 +00:00
PBGetCatInfo uses fs spec / dirID
This commit is contained in:
parent
183078925e
commit
24e47c7f9b
@ -52,7 +52,8 @@
|
||||
#include "os_internal.h"
|
||||
#include "toolbox.h"
|
||||
#include "stackframe.h"
|
||||
|
||||
#include "fs_spec.h"
|
||||
|
||||
using ToolBox::Log;
|
||||
|
||||
using MacOS::macos_error_from_errno;
|
||||
@ -187,9 +188,16 @@ namespace OS {
|
||||
}
|
||||
|
||||
sname = ToolBox::ReadPString(ioNamePtr, true);
|
||||
{
|
||||
uint32_t ioDirID = memoryReadLong(parm + _ioDirID);
|
||||
sname = FSSpecManager::ExpandPath(sname, ioDirID);
|
||||
}
|
||||
|
||||
Log(" PBGetCatInfo(%s)\n", sname.c_str());
|
||||
|
||||
|
||||
|
||||
|
||||
struct stat st;
|
||||
|
||||
if (::stat(sname.c_str(), &st) < 0)
|
||||
@ -341,6 +349,10 @@ namespace OS {
|
||||
}
|
||||
|
||||
std::string sname = ToolBox::ReadPString(ioNamePtr, true);
|
||||
{
|
||||
uint32_t ioDirID = memoryReadLong(parm + _ioDirID);
|
||||
sname = FSSpecManager::ExpandPath(sname, ioDirID);
|
||||
}
|
||||
|
||||
Log(" PBSetCatInfo(%s)\n", sname.c_str());
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user