diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-12-07T14·14+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2006-12-07T14·14+0000 |
commit | 6a07ff1ec068c6255d45644eb182dea5c0027286 (patch) | |
tree | 9147498626288f69531b659d2a0b008afc1d9696 /src/libutil | |
parent | 7d8cf316eec3b5b1f2cf5ae8558a80bcaa69437f (diff) |
* Change the ownership of store paths to the Nix account before
deleting them using the setuid helper.
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc index 5907adc80718..b152dc8f4b0b 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -797,7 +797,7 @@ string runProgram(Path program) /* Wait for the child to finish. */ int status = pid.wait(true); if (!statusOk(status)) - throw Error(format("program `%1% %2%") + throw Error(format("program `%1%' %2%") % program % statusToString(status)); return result; |