diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-11-01 03:58:14 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-11-01 03:58:14 +0100 |
commit | 5a56c0adf2c63602b819d052644cb14caf732438 (patch) | |
tree | 37c6725a0ed7cfcf9708de335e21b52fc2a46c20 /lib/replace/replace.c | |
parent | df766a303a9114969caa7c51e5e0e29d8e0e3850 (diff) | |
download | samba-5a56c0adf2c63602b819d052644cb14caf732438.tar.gz samba-5a56c0adf2c63602b819d052644cb14caf732438.tar.xz samba-5a56c0adf2c63602b819d052644cb14caf732438.zip |
Use dup2() replacement from libreplace.
Diffstat (limited to 'lib/replace/replace.c')
-rw-r--r-- | lib/replace/replace.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/replace/replace.c b/lib/replace/replace.c index 98d799b07e8..4aa84b886d1 100644 --- a/lib/replace/replace.c +++ b/lib/replace/replace.c @@ -614,3 +614,12 @@ int rep_utimes(const char *filename, const struct timeval tv[2]) return utime(filename, &u); } #endif + +#ifndef HAVE_DUP2 +int rep_dup2(int oldfd, int newfd) +{ + errno = ENOSYS; + return -1; +} +#endif + |