From d166b798529dab4538054d0b68797c0cc17f34de Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 28 Mar 2012 12:48:00 +1100 Subject: build: Remove sys_open wrapper --- source3/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/client') diff --git a/source3/client/client.c b/source3/client/client.c index f10e56348c..95500b0862 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1108,7 +1108,7 @@ static int do_get(const char *rname, const char *lname_in, bool reget) handle = fileno(stdout); } else { if (reget) { - handle = sys_open(lname, O_WRONLY|O_CREAT, 0644); + handle = open(lname, O_WRONLY|O_CREAT, 0644); if (handle >= 0) { start = lseek(handle, 0, SEEK_END); if (start == -1) { @@ -1117,7 +1117,7 @@ static int do_get(const char *rname, const char *lname_in, bool reget) } } } else { - handle = sys_open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644); + handle = open(lname, O_WRONLY|O_CREAT|O_TRUNC, 0644); } newhandle = true; } -- cgit