diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-10-18 16:40:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:21:24 -0500 |
commit | 3a479ae55085e8dd315429dc5979534628891bbc (patch) | |
tree | 76f47a26f0423a48d805a31a1686ba0f80fd8004 /source4/lib/replace/replace.c | |
parent | f9a0ada725b012261ec9460185105f57206c70c3 (diff) | |
download | samba-3a479ae55085e8dd315429dc5979534628891bbc.tar.gz samba-3a479ae55085e8dd315429dc5979534628891bbc.tar.bz2 samba-3a479ae55085e8dd315429dc5979534628891bbc.zip |
r19395: Fix replacement function compilation.
(This used to be commit b79303f25180c777d9d09b2cdf852bf0a5eda70d)
Diffstat (limited to 'source4/lib/replace/replace.c')
-rw-r--r-- | source4/lib/replace/replace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/replace/replace.c b/source4/lib/replace/replace.c index 83d7948dfb..9e6c75bd35 100644 --- a/source4/lib/replace/replace.c +++ b/source4/lib/replace/replace.c @@ -608,6 +608,6 @@ int rep_socketpair(int d, int type, int protocol, int sv[2]) return -1; } - return pipe(sock); + return pipe(sv); } #endif |