aboutsummaryrefslogtreecommitdiffstats
path: root/pseudo_client.c
AgeCommit message (Collapse)Author
2010-03-25initial chroot() supportPeter Seebach
Add chroot() and a large number of things needed to make it work. The list of intercepted calls is large but not exhaustive.
2010-03-24Prep for chroot handling:Peter Seebach
* Improve makewrappers handling of function pointer arguments. * Regenerate wrappers when makewrappers is touched. * Move path resolution from pseudo_client_op into wrapper functions. * Eliminate dependency on PATH_MAX. * Related cleanup, such as tracking CWD better, and using the tracked value for getcwd().
2010-03-17Use strerror() consistently.Peter Seebach
For reasons not clear to me, early iterations of pseudo_client.c used errno %d instead of calling strerror(). Since I already called strerror() elsewhere in the file, calling it a few more times isn't a problem.
2010-03-16initial public releasePeter Seebach