1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-25 06:04:04 +03:00

r19395: Fix replacement function compilation.

(This used to be commit b79303f25180c777d9d09b2cdf852bf0a5eda70d)
This commit is contained in:
Jelmer Vernooij 2006-10-18 16:40:55 +00:00 committed by Gerald (Jerry) Carter
parent f9a0ada725
commit 3a479ae550

View File

@ -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