forked from lix-project/lix
Cleanup
This commit is contained in:
parent
7a2b64e55c
commit
d0b88db441
|
@ -221,9 +221,9 @@ Path readLink(const Path & path)
|
||||||
ssize_t rlSize = readlink(path.c_str(), buf, bufSize);
|
ssize_t rlSize = readlink(path.c_str(), buf, bufSize);
|
||||||
if (rlSize == -1)
|
if (rlSize == -1)
|
||||||
if (errno == EINVAL)
|
if (errno == EINVAL)
|
||||||
throw Error(format("'%1%' is not a symlink") % path);
|
throw Error("'%1%' is not a symlink", path);
|
||||||
else
|
else
|
||||||
throw SysError(format("reading symbolic link '%1%'") % path);
|
throw SysError("reading symbolic link '%1%'", path);
|
||||||
else if (rlSize < bufSize)
|
else if (rlSize < bufSize)
|
||||||
return string(buf, rlSize);
|
return string(buf, rlSize);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue