diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-03-28 12:48:00 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-04-05 02:39:08 +0200 |
commit | d166b798529dab4538054d0b68797c0cc17f34de (patch) | |
tree | 8bbdeba0c71b1819abe153e7bf3a2c024adc42cf /source3/libgpo | |
parent | 9cc056e567fe923bb3a19fce3828cdbea9a3d2f7 (diff) | |
download | samba-d166b798529dab4538054d0b68797c0cc17f34de.tar.gz samba-d166b798529dab4538054d0b68797c0cc17f34de.tar.bz2 samba-d166b798529dab4538054d0b68797c0cc17f34de.zip |
build: Remove sys_open wrapper
Diffstat (limited to 'source3/libgpo')
-rw-r--r-- | source3/libgpo/gpo_filesync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libgpo/gpo_filesync.c b/source3/libgpo/gpo_filesync.c index 7f0e4107d6..6e3efdaf6c 100644 --- a/source3/libgpo/gpo_filesync.c +++ b/source3/libgpo/gpo_filesync.c @@ -55,7 +55,7 @@ NTSTATUS gpo_copy_file(TALLOC_CTX *mem_ctx, goto out; } - if ((fd = sys_open(unix_path, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1) { + if ((fd = open(unix_path, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1) { result = map_nt_error_from_unix(errno); goto out; } |