diff options
author | Jeremy Allison <jra@samba.org> | 1998-11-17 20:50:07 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-11-17 20:50:07 +0000 |
commit | 18ff93a9abbf68ee8c59c0af3e57c63e4a015dac (patch) | |
tree | 4ac25cab78948bd6a334a552d884869443d2d8c2 /source/smbd/ipc.c | |
parent | 2a98135bbc759ab334d76cce98ea673871445db1 (diff) | |
download | samba-18ff93a9abbf68ee8c59c0af3e57c63e4a015dac.tar.gz samba-18ff93a9abbf68ee8c59c0af3e57c63e4a015dac.tar.xz samba-18ff93a9abbf68ee8c59c0af3e57c63e4a015dac.zip |
Added the same open()/fopen()/creat()/mmap() -> sys_XXX calls.
Tidied up some of the mess (no other word for it). Still doesn't
compile cleanly. There are calls with incorrect parameters that
don't seem to be doing the right thing.
This code still needs surgery :-(.
Jeremy.
Diffstat (limited to 'source/smbd/ipc.c')
-rw-r--r-- | source/smbd/ipc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/smbd/ipc.c b/source/smbd/ipc.c index eed5a714017..d5ff7ddf28e 100644 --- a/source/smbd/ipc.c +++ b/source/smbd/ipc.c @@ -635,7 +635,7 @@ static void fill_printq_info(connection_struct *conn, int snum, int uLevel, pstring fname; pstrcpy(fname,lp_driverfile()); - f=fopen(fname,"r"); + f=sys_fopen(fname,"r"); if (!f) { DEBUG(3,("fill_printq_info: Can't open %s - %s\n",fname,strerror(errno))); desc->errcode=NERR_notsupported; @@ -741,7 +741,7 @@ static int get_printerdrivernumber(int snum) pstrcpy(fname,lp_driverfile()); DEBUG(4,("In get_printerdrivernumber: %s\n",fname)); - f=fopen(fname,"r"); + f=sys_fopen(fname,"r"); if (!f) { DEBUG(3,("get_printerdrivernumber: Can't open %s - %s\n",fname,strerror(errno))); return(0); @@ -999,7 +999,7 @@ static int get_server_info(uint32 servertype, pstrcat(fname,"/"); pstrcat(fname,SERVER_LIST); - f = fopen(fname,"r"); + f = sys_fopen(fname,"r"); if (!f) { DEBUG(4,("Can't open %s - %s\n",fname,strerror(errno))); |