diff options
author | Jeremy Allison <jra@samba.org> | 2000-03-16 20:55:37 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2000-03-16 20:55:37 +0000 |
commit | e601c0259e9e6a48e04ce3e0ff793cb564a89716 (patch) | |
tree | 43bd810549c4ecaff98bb9853750de16af73d554 /source3/include/proto.h | |
parent | a36d737c88b002787014b04788460ca65b4dcbe5 (diff) | |
download | samba-e601c0259e9e6a48e04ce3e0ff793cb564a89716.tar.gz samba-e601c0259e9e6a48e04ce3e0ff793cb564a89716.tar.bz2 samba-e601c0259e9e6a48e04ce3e0ff793cb564a89716.zip |
Fixes to add "paranoid" option to popen. Checks some basic things.
Jeremy
(This used to be commit 3b8cbb10de322fd7a1063fb5b681790b10d24ab0)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index d96d2f77c0..27d3de49b8 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -233,7 +233,7 @@ DIR *wsys_opendir(const smb_ucs2_t *wfname); smb_ucs2_t *wsys_getwd(smb_ucs2_t *s); int wsys_chown(const smb_ucs2_t *wfname, uid_t uid, gid_t gid); int wsys_chroot(const smb_ucs2_t *wfname); -FILE *sys_popen(const char *command, const char *mode); +FILE *sys_popen(const char *command, const char *mode, BOOL paranoid); int sys_pclose( FILE *fp); /*The following definitions come from lib/talloc.c */ |