1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-26 12:10:59 +01:00

Recursive build error.... *2

This commit is contained in:
Wouter den Breejen 2007-10-12 10:05:17 +00:00
parent 65ba1f3008
commit 0ee803935e
12 changed files with 97 additions and 56 deletions

View file

@ -467,7 +467,7 @@ void readFull(int fd, unsigned char * buf, size_t count)
throw SysError("reading from file");
}
if (res == 0)
throw EndOfFile("unexpected end-of-file (in readFull so deamon communication)");
throw EndOfFile("unexpected end-of-file (in readFull so daemon communication)");
count -= res;
buf += res;
}