diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2007-07-20 14:29:43 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2007-07-20 14:29:43 +0000 |
commit | eea4e4820871fcc7c39392606e8ac07620ebe49b (patch) | |
tree | 9e65dc78ab11fa976c49b6eee3bfdacf93b0e89e /winsup/cygwin/Makefile.in | |
parent | f36b37ed6ea793ce33ec84c694f772fb6de1ddd4 (diff) | |
download | cygnal-eea4e4820871fcc7c39392606e8ac07620ebe49b.tar.gz cygnal-eea4e4820871fcc7c39392606e8ac07620ebe49b.tar.bz2 cygnal-eea4e4820871fcc7c39392606e8ac07620ebe49b.zip |
* fhandler.cc (fhandler_base::fhaccess): Accommodate interface changes
of access control functions throughout.
* fhandler_disk_file.cc: Ditto.
* fhandler_registry.cc: Ditto.
* sec_acl.cc: Drop unnecessary includes.
(setacl): Take path_conv instead of file name as parameter.
Accommodate interface changes of access control functions.
(getacl): Ditto.
* sec_auth.cc: New file, taking over all authentication related
functions from security.cc.
* sec_helper.cc: Drop unnecessary includes.
* security.cc: Ditto. Move all authentication related functions to
sec_auth.cc.
(ALL_SECURITY_INFORMATION): New define. Use throughout.
(set_file_sd): New function, replacing read_sd and the file related
part of get_nt_object_security.
(get_reg_sd): Rename from get_reg_security. Drop type parameter.
(get_reg_attribute): New function, replacing the registry related part
of get_nt_object_security.
(get_file_attribute): Take path_conv instead of file name as parameter.
Use new get_file_sd call.
(set_file_attribute): Ditto plus new set_file_sd. Drop unnecessary
implementation without uid/gid parameters.
(check_file_access): Take path_conv instead of file name as parameter.
Use new get_file_sd call.
(check_registry_access): Use new get_reg_sd call.
* security.h: Accommodate above interface changes.
Diffstat (limited to 'winsup/cygwin/Makefile.in')
-rw-r--r-- | winsup/cygwin/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index eb0c85814..5251ff9b8 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -139,12 +139,12 @@ DLL_OFILES:=assert.o autoload.o bsdlib.o ctype.o cxx.o cygheap.o cygthread.o \ minires.o miscfuncs.o mktemp.o mmap.o msg.o net.o netdb.o nftw.o \ passwd.o path.o pinfo.o pipe.o poll.o posix_ipc.o pthread.o random.o \ regcomp.o regerror.o regexec.o regfree.o registry.o resource.o rexec.o \ - rcmd.o scandir.o sched.o sec_acl.o sec_helper.o security.o select.o \ - sem.o shared.o shm.o sigfe.o signal.o sigproc.o smallprint.o spawn.o \ - strace.o strptime.o strsep.o strsig.o sync.o syscalls.o sysconf.o \ - syslog.o termios.o thread.o timelocal.o timer.o times.o tty.o uinfo.o \ - uname.o v8_regexp.o v8_regerror.o v8_regsub.o wait.o wincap.o window.o \ - winf.o xsique.o \ + rcmd.o scandir.o sched.o sec_acl.o sec_auth.o sec_helper.o security.o \ + select.o sem.o shared.o shm.o sigfe.o signal.o sigproc.o smallprint.o \ + spawn.o strace.o strptime.o strsep.o strsig.o sync.o syscalls.o \ + sysconf.o syslog.o termios.o thread.o timelocal.o timer.o times.o \ + tty.o uinfo.o uname.o v8_regexp.o v8_regerror.o v8_regsub.o wait.o \ + wincap.o window.o winf.o xsique.o \ $(EXTRA_DLL_OFILES) $(EXTRA_OFILES) $(MALLOC_OFILES) $(MT_SAFE_OBJECTS) GMON_OFILES:=gmon.o mcount.o profil.o |