1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

r19395: Fix replacement function compilation.

This commit is contained in:
Jelmer Vernooij 2006-10-18 16:40:55 +00:00 committed by Gerald (Jerry) Carter
parent 448a3ecc01
commit b79303f251

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