bacd5877ba* cygcheck.cc (dump_sysinfo): Evaluate and print state of obcaseinsensitive kernel flag.
Corinna Vinschen
2009-01-29 19:31:04 +0000
9c87160882fix typo in previous entry
Doug Evans
2009-01-29 00:37:12 +0000
88db8cbb6a* opcode/i386.h: Add multiple inclusion protection. (EAX_REG_NUM,ECX_REG_NUM,EDX_REGNUM,EBX_REG_NUM,ESI_REG_NUM) (EDI_REG_NUM): New macros. (MODRM_MOD_FIELD,MODRM_REG_FIELD,MODRM_RM_FIELD): New macros. (SIB_SCALE_FIELD,SIB_INDEX_FIELD,SIB_BASE_FIELD): New macros. (REG_PREFIX_P): New macro.
Doug Evans
2009-01-29 00:29:53 +0000
3e703e875a2009-01-28 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston
2009-01-28 18:12:52 +0000
1ae0cd1335* fhandler.cc (fhandler_base::wait_overlapped): Set bytes to -1 on EINTR or real error. (fhandler_base::write_overlapped): Assume that bytes_written will contain proper error value. * pipe.cc (fhandler_pipe::fhandler_pipe): Set uninterruptible_io since signals are handled by pipe functions now.
Christopher Faylor
2009-01-27 05:21:08 +0000
dcad81990b* configure.host (m32c-*-*): Add long long I/O support by default.
DJ Delorie
2009-01-27 01:41:31 +0000
555a908c17* shared.cc (shared_name): New function for WCHAR names. (open_shared): Take name parameter as WCHAR. Accommodate throughout. * shared_info.h ((CURR_SHARED_MAGIC): Redefine. (shared_name): Add declaration for function taking a WCHAR name. (open_shared): Change declaration according to above change. * pinfo.cc (pinfo::init) : Accommodate above change.
Corinna Vinschen
2009-01-26 13:42:37 +0000
b89fb103f2* grp.cc (getgrgid_r): Simplify code by using stpcpy. (getgrnam_r): Ditto. * passwd.cc (getpwuid_r32): Simplify code by using stpcpy. (getpwnam_r): Ditto.
Corinna Vinschen
2009-01-26 13:20:46 +0000
93e884989a* uinfo.cc (pwdgrp::load): Open file with FILE_OPEN_FOR_BACKUP_INTENT flag.
Corinna Vinschen
2009-01-26 13:03:49 +0000
01d2675aea* mount.cc (mount_info::from_fstab): Open fstab file with FILE_OPEN_FOR_BACKUP_INTENT flag.
Corinna Vinschen
2009-01-24 16:30:09 +0000
7d01164900* pathnames.sgml: Add requirement for world-readability of special /etc files.
Corinna Vinschen
2009-01-24 15:31:18 +0000
d9ad7a9c4e* fhandler_procnet.cc: Reorganize global procnet content data into a new struct virt_tab_t. Accommodate throughout.
Corinna Vinschen
2009-01-20 18:04:32 +0000
38f50ae4d5* devices.h (FH_PROCESSFD): New device type. * dtable.cc (build_fh_pc): Add case for FH_PROCESSFD. * fhandler.h (class fhandler_virtual): Drop bufalloc member. * fhandler_virtual.h: New header. * fhandler_proc.cc: Remove types proc_type_t and proc_tab_t in favor of types virt_type_t and virt_tab_t from fhandler_virtual.h. Change prototypes of format_XXX functions accordingly. (proc_tab): Drop size member info. (fhandler_proc::fill_filebuf): Don't allocate filebuf here. Allocate it in the format_XXX functions. * fhandler_process.cc: Reorganize global process content data into a new struct virt_tab_t. Accommodate throughout. (format_process_winexename): New function. (format_process_winpid): New function. (format_process_exename): New function. (format_process_root): New function. (format_process_cwd): New function. (format_process_cmdline): New function. (format_process_ppid): New function. (format_process_uid): New function. (format_process_pgid): New function. (format_process_sid): New function. (format_process_gid): New function. (format_process_ctty): New function. (format_process_fd): New function. * fhandler_procnet.cc (fhandler_procnet::fill_filebuf): Don't use bufalloc. * fhandler_registry.cc (fhandler_registry::fill_filebuf): Define bufalloc locally. * fhandler_virtual.cc (fhandler_virtual::fhandler_virtual): Drop initialization of bufalloc. (fhandler_virtual::dup): Drop copying bufalloc.
Corinna Vinschen
2009-01-20 17:22:11 +0000
f8190b5705* thread.h (struct pthread_rwlock::RWLOCK_READER): Add counter n. * thread.cc (pthread_rwlock::rdlock): If a thread already owns a read lock, just count the number of locks for it, per SUSv4. (pthread_rwlock::tryrdlock): Ditto. (pthread_rwlock::unlock): If a thread has more than one concurrent read locks, just count down.
Corinna Vinschen
2009-01-20 12:40:31 +0000
3787b37ef2* autoload.cc (WSAIoctl): Reintroduce. (WSASendMsg): Define. * fhandler.h (class fhandler_socket): Change definition of recv_internal and send_internal to take WSAMSG pointer as parameter. * fhandler_socket.cc (WSAID_WSARECVMSG): Define. (LPFN_WSARECVMSG): Define. (WSASendMsg): Declare. (get_ext_funcptr): New function to fetch address of WSARecvMsg. (fhandler_socket::recv_internal): Take just a LPWSAMSG parameter. Change code accordingly. If control information is requested, fetch address of WSARecvMsg and use that instead of WSARecvFrom. (fhandler_socket::recvfrom): Change return type to ssize_t as declared in fhandler.h. Accommodate changes to recv_internal. (fhandler_socket::recvmsg): Ditto. Make sure that control information is only requested if system, address family, and socket type support it. (fhandler_socket::send_internal): Take just a LPWSAMSG parameter and the flags. Change code accordingly. If control information is provided, use WSASendMsg instead of WSASendTo. (fhandler_socket::sendto): Drop useless comment. Accommodate changes to send_internal. (fhandler_socket::sendmsg): Ditto. Make sure that control information is only provided if system, address family, and socket type support it. * wincap.h (wincaps::has_recvmsg): New element. (wincaps::has_sendmsg): New element * wincap.cc: Implement above elements throughout. * include/cygwin/socket.h (CMSG_ALIGN): Phrase in terms of alignment of type struct cmsghdr.
Corinna Vinschen
2009-01-20 11:16:59 +0000
2e287a63272009-01-19 Neal H. Walfield <neal@gnu.org>
Jeff Johnston
2009-01-19 22:02:06 +0000
b50494eedcRemove conflict marker.
Andreas Schwab
2009-01-19 09:42:13 +0000
895d15b81e* mmap.cc (mmap64): Fix condition checking if anonymous mapping beyond EOF is required.
Corinna Vinschen
2009-01-17 17:20:37 +0000
96ed5e24412009-01-11 Henry Nestler <henry@bigfoot.de>
Chris Sutcliffe
2009-01-17 17:00:07 +0000
2ac273a946* Makefile.in: Fix copyright date. * cygcheck.cc (scan_registry): Take additional parameter and add code to avoid recursion in Wow6432Node subkey. Rename variable cygnus to cygwin. Scan for "Cygwin" instead of for "cygnus" substring. (dump_sysinfo): Drop unused calls to scan_registry. Drop scanning HKEY_CURRENT_CONFIG.
Corinna Vinschen
2009-01-17 11:59:16 +0000
40255b64d4* fhandler_proc.cc: Reorganize global proc content data into a new struct proc_tab_t. Accommodate throughout. (format_proc_version): New function. (format_proc_loadavg): New function. (format_proc_self): New function.
Corinna Vinschen
2009-01-17 10:16:42 +0000
ab30b9e352* cygcheck.cc (dump_sysinfo): Raise size of osname. Add Windows 7 and Windows 2008 R2 as recognized OSes. Update products array to the latest documented list.
Corinna Vinschen
2009-01-16 12:10:02 +0000
3491d19262formatting
Alan Modra
2009-01-16 08:07:43 +0000
d89fcc4335* Makefile.def (configure-opcodes): Depend on configure-libiberty. * Makefile.def (all-opcodes): Depend on all-libiberty. * Makefile.in: Regenerate.
Alan Modra
2009-01-16 08:06:15 +0000
c309a17b322009-01-15 Andrew Stubbs <ams@codesourcery.com> Julian Brown <julian@codesourcery.com>
Andrew Stubbs
2009-01-15 18:00:49 +0000
608adbedaf* configure.ac (ia64*-*-*vms*): Add case with no gdb or ld support. * configure: Regenerate.
Nick Clifton
2009-01-15 12:55:46 +0000
be0d808ef8* include/elf/ia64.h (SHT_IA_64_VMS_DISPLAY_NAME_INFO, EF_IA_64_ARCHVER_1): New macros. Minor reformatting.
Nick Clifton
2009-01-15 12:42:52 +0000
9c60088a81* plugin-api.h (LDPS_BAD_HANDLE): New constant. (ld_plugin_get_input_file): New typedef. (ld_plugin_release_input_file): New typedef. (LDPT_GET_INPUT_FILE, LDPT_RELEASE_INPUT_FILE): New constants. (struct ld_plugin_tv): Add two new fields.
Cary Coutant
2009-01-15 01:28:14 +0000
4eff98a240Update the copyright notice of some of the files I missed in the previous copyright update.
Joel Brobecker
2009-01-14 10:53:04 +0000
8c3efc4901* libc/getopt.c (parse_long_options): Use fix from NetBSD's getopt to avoid false ambiguities.
Corinna Vinschen
2009-01-13 09:58:43 +0000
d9db4e43f32009-01-12 Nathan Froyd <froydnj@codesourcery.com>
Jeff Johnston
2009-01-12 23:32:37 +0000
ceedb0dcb82009-01-12 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston
2009-01-12 22:19:11 +0000
8a0f3bbf2d* syscalls.cc (enum bin_status): New type. (try_to_bin): Return bin_status. Rename win32_path to pc. Rename h to fh. Rename fh to tmp_fh. Add code to set delete dispostion and more code to replace file moved to bin by another, temporary file. Add comments to explain why. (unlink_nt): Replace move_to_bin with bin_stat. Only set bin_stat to move_to_bin for non-remote files. As a last resort, call try_to_bin if setting delete-on-close failed. Only re-set R/O DOS attribute and only close handle if it's still valid.
Corinna Vinschen
2009-01-12 15:51:23 +0000
b98c66ee2c* errno.cc (errmap): Set errno to ENOENT instead of ENOSHARE throughout. * path.cc (path_conv::check): Set to and check for ENOENT instead of ENOSHARE.
Corinna Vinschen
2009-01-11 16:13:11 +0000
45cda16a7f2009-01-10 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
Chris Sutcliffe
2009-01-10 18:42:32 +0000
91d9410bd0gas/ * config/tc-ppc.c (ppc_setup_opcodes): Remove PPC_OPCODE_NOPOWER4 test. Test the new "deprecated" opcode field.
Peter Bergner
2009-01-09 18:50:57 +0000
54a83cc65a* mount.cc (mount_info::from_fstab_line): Always convert drive letter in native path to uppercase. * path.cc (normalize_win32_path): Ditto. (path_prefix_p): Revert previous patch.
Corinna Vinschen
2009-01-09 16:20:26 +0000
d95d8c5393* include/sys/cygwin.h (CW_SETERRNO): Define. * external.cc (CW_SETERRNO): Implement. * include/cygwin/version.h: Bump CYGWIN_VERSION_API_MINOR to 192 to reflect the above change. * path.cc (path_prefix_p): Treat X: as equivalent to x:. * mkglobals_h: Remove unneeded #define. * spawn.cc (spawn_guts): Avoid overly wordy initialization to zero.
Christopher Faylor
2009-01-09 05:18:02 +0000
086dc27fec* ldd.cc: New file. First stab at implementing ldd-like functionality for Cygwin. * Makefile.in (CYGWIN_BINS): Add ldd. (ldd.exe): Use -lpsapi.
Christopher Faylor
2009-01-09 05:11:57 +0000
aa9f366548* libc/fts.c (fts_build): Use DT_DIR case on Cygwin. (fts_ufslinks): Fix using wrong structure member in Cygwin-specific code.
Corinna Vinschen
2009-01-08 21:12:46 +0000
313f76f322Typo fixes.
Ben Elliston
2009-01-08 00:21:03 +0000
b821b6b5572009-01-07 Ben Elliston <bje@au.ibm.com>
Jeff Johnston
2009-01-07 22:10:29 +0000
f4ad04049f* ntdll.h: Reorder NT status flags. Fix a case difference. Add STATUS_CANNOT_DELETE flag. * syscalls.cc (unlink_nt): Change initial NtOpenFile to request FILE_SHARE_DELETE sharing mode. Change comment accordingly. If setting delete disposition failed with STATUS_CANNOT_DELETE, try to delete using delete-on-close. Explain why. Rearrange setting R/O DOS attribute after trying to delete. Simplify comment.
Corinna Vinschen
2009-01-07 18:18:23 +0000
3bee7767a8* fhandler_disk_file.cc (fhandler_disk_file::link): Only add .exe if original file has .exe as well. * path.cc (path_conv::is_binary): Only recognize Windows 32 and 64 bit apps as binaries.
Corinna Vinschen
2009-01-07 14:12:40 +0000
98d47b2d0d* callback.h (struct host_callback_struct): Mark member error as pointing to a noreturn function.
Hans-Peter Nilsson
2009-01-06 23:38:44 +0000
952801c27e* cygcheck.cc (dump_sysinfo_services): Quote the path for popen.
Pierre Humblet
2009-01-06 04:11:23 +0000
8ca367408d2009-01-05 Craig Howland <howland@LGSInnovations.com>
Jeff Johnston
2009-01-05 19:08:03 +0000
f1170e02f2Fix MinGW-Bug [2445962]; (reported by Keishi Suenaga).
Keith Marshall
2009-01-04 17:35:36 +0000
952783ba77* Makefile.in (CFLAGS): Look in cygwin's build directory for header files.
Christopher Faylor
2009-01-03 05:37:34 +0000
8bb2521761correct
Christopher Faylor
2009-01-03 05:13:35 +0000
66a83f3eacRemove unneeded header files from source files throughout. Update copyrights where appropriate. * globals.cc: New file for generic global variables. * mkglobals_h: New file to generate globals.h. * mkstatic: New Script used to build a (currently non-working) static libcygwin_s.a. * Makefile.in: Add unused rule to build a non-working libcygwin_s.a. (DLL_OFILES): Add globals.o. Make all objects rely on globals.h. (globals.h): New target. Generate globals.h. * cygtls.h: Honor new CYGTLS_HANDLE define to control when the HANDLE operator is allowed in _cygtls. * dcrt0.cc: Move most globals to globals.cc. * init.cc: Ditto. * environ.cc (strip_title_path): Remove now-unneeded extern. * fhandler_serial.cc (fhandler_serial::open): Ditto. * pinfo.cc: Ditto. (commune_process): Ditto. * shared.cc: Ditto. * glob.cc: Ditto. * strace.cc: Ditto. * exceptions.cc: Define CYGTLS_HANDLE before including winsup.h. * path.cc (stat_suffixes): Move here. * security.h: Add forward class path_conv declaration. * smallprint.cc (__small_vsprintf): Make a true c++ function. (__small_sprintf): Ditto. (small_printf): Ditto. (console_printf): Ditto. (__small_vswprintf): Ditto. (__small_swprintf): Ditto. * spawn.cc (spawn_guts): Remove _stdcall decoration in favor of regparm. (hExeced): Move to globals.cc * strfuncs.cc (current_codepage): Ditto. (active_codepage): Ditto. * sync.cc (lock_process::locker): Move here from dcrt0.cc. * syscalls.cc (stat_suffixes): Move to path.cc. * tty.cc (tty::create_master): Uncapitalize fatal warning for consistency. * winsup.h: Include globals.h to declare most of the grab bag list of globals which were previously defined here. * mount.h: Move USER_* defines back to shared_info.h. * speclib: Force temporary directory cleanup.
Christopher Faylor
2009-01-03 05:12:22 +0000
258776ce91Year-end rollover.
Christopher Faylor
2009-01-03 02:27:46 +0000
944c817a60* speclib: Rewrite completely in perl. Avoid multiple nm calls.
Christopher Faylor
2009-01-02 06:57:14 +0000
feb2075569* include/cygwin/version.h: Bump CYGWIN_VERSION_API_MINOR to 191.
Christopher Faylor
2008-12-31 21:47:45 +0000
ecd5bc4ea8* glob_pattern_p.cc: New file. * Makefile.in (DLL_OFILES): Add glob_pattern_p.o. * glob.h: Add declaration for glob_pattern_p. * pinfo.cc (pinfo::thisproc): Remove __stdcall attribute.
Christopher Faylor
2008-12-31 21:33:34 +0000
762cf3ee22Correct mishandling of invalid characters in printf() format specs.
Keith Marshall
2008-12-31 15:34:09 +0000
0c94c057a4* include/bits/wordsize.h: New linux-compatibility header.
Christopher Faylor
2008-12-31 04:12:44 +0000
0b451bb524* cygcheck.cc (pretty_id): Quote the path for popen. (dump_sysinfo_services): Ditto.
Pierre Humblet
2008-12-31 01:44:36 +0000
b837af5478* exceptions.cc (try_to_debug): Avoid creating a huge buffer on the stack.
Christopher Faylor
2008-12-30 18:18:09 +0000
5829832825* mount.cc: Change comment. (smb_extended_info): Move here from path.cc. (fs_info::update): Ditto. (mount_info::create_root_entry): Delay conversion to slashes and use passed in buffer to figure out fs type. * path.cc (smb_extended_info): Move. (fs_info::update): Ditto. * mount.h: New file. Move mount information here. * path.h: (fs_info::update): Move. * shared_info.h (mount_item): Ditto.
Christopher Faylor
2008-12-25 15:55:31 +0000
58402a3f63* path.cc (symlink_info::check_shortcut): Ensure that symlink handle is closed on successful return.
Christopher Faylor
2008-12-24 16:34:38 +0000
2f6f0bbeaeAdd LM32 port.
Nick Clifton
2008-12-23 19:10:21 +0000
9a8597c13a* fhandler.h (fhandler_base_setup_overlapped): Add new argument. (fhandler_base::get_overlapped_buffer): Declare new function. (fhandler_base::set_overlapped): Ditto. (fhandler_pipe::overlapped): New variable. (fhandler_pipe::get_overlapped): Rework to return contents of overlapped variable. (fhandler_pipe::set_overlapped): Set overlapped variable based on argument. (fhandler_fifo::get_overlapped_buffer): Return pointer to io_status. * fhandler.cc (handler_base::setup_overlapped): Set to overlapped pointer to NULL if new doit parameter is false. Otherwise set up overlapped event as usual. (fhandler_base::wait_overlapped): Return inres if this isn't an overlapped operation. (fhandler_base::read_overlapped): Remove inappropriate asserts. * pipe.cc (fhandler_pipe::fhandler_pipe): Zero overlapped element. (struct pipesync): Delete. (getov_result): Ditto. (pipe_handler): Ditto. (pipesync::pipesync): Ditto. (fhandler_pipe::init): Don't set up pipesync thread. Just pass opened_properly flag along to overlapped setup.
Christopher Faylor
2008-12-23 18:22:33 +0000
15be19c17cRemove STT_IFUNC support.
Nick Clifton
2008-12-23 09:01:50 +0000
272fac20e72008-12-19 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston
2008-12-22 19:45:56 +0000
6ef31d2336* pipe.cc (getov_result): Minor cleanup.
Christopher Faylor
2008-12-22 19:18:00 +0000
16c40518c0Add missing ChangeLog entries for my last commit.
Ralf Wildenhues
2008-12-21 12:45:51 +0000
91ad1942a2* pipe.cc (getov_result): Add parameters to facilitate better EOF checking. (pipe_handler): Pass extra arguments to getov_result.
Christopher Faylor
2008-12-21 01:54:32 +0000
0cf888799b* fhandler.cc (fhandler_base::wait_overlapped): Reorganize to eliminate gotos and to hopefully eliminate one race when a signal is detected or there is a WFMO error.
Christopher Faylor
2008-12-20 19:20:00 +0000
9ac421686a* pinfo.h (pinfo::thisproc): Declare. Rename from set_myself. * pinfo.cc (pinfo::thisproc): Define. Rename from set_myself. Set procinfo to NULL to avoid confusing subsequent init. (pinfo_init): Accommodate set_myself -> pinfo::thisproc rename. * dcrt0.cc (child_info_fork::handle_fork): Ditto. (child_info_spawn::handle_spawn): Ditto.
Christopher Faylor
2008-12-20 17:32:31 +0000
e9982f2a2b* pwdgrp.h (pwdgrp::refresh): Fix indentation. * uinfo.cc (pwdgrp::load): Open file synchronized to avoid truncated read. Drop local variable off.
Corinna Vinschen
2008-12-20 09:35:18 +0000
99c7be03b22008-12-16 Danny Smith <dannysmith@users.sourceforge.net>
Chris Sutcliffe
2008-12-20 03:55:37 +0000
59ca6f3ea1* cris.h (R_CRIS_32_IE): New relocation.
Hans-Peter Nilsson
2008-12-20 00:24:16 +0000
1af6bb97a4* pinfo.cc (pinfo_basic): New class. (pinfo_basic::pinfo_basic): Define constructor for new class. (myself): Initialize from myself_initial. (set_myself): Set pid and progname from already myself_initial. * strace.cc (strace::strace): Split apart strace::hello. Send notification to strace as early as possible. (strace::hello): Just send clause which describes the current process. This can now be preceded by early initialization strace output. * include/sys/strace.h (strace::strace): Declare new constructor.
Christopher Faylor
2008-12-19 19:09:51 +0000
887eb76fca* fhandler_registry.cc (perf_data_files): New table. (PERF_DATA_FILE_COUNT): New constant. (fhandler_registry::exists): Add check for HKEY_PERFORMANCE_DATA value names. (fhandler_registry::fstat): For HKEY_PERFORMANCE_DATA, return default values only. (fhandler_registry::readdir): For HKEY_PERFORMANCE_DATA, list names from perf_data_files only. (fhandler_registry::fill_filebuf): Use larger buffer to speed up access to HKEY_PERFORMANCE_DATA values. Remove check for possible subkey. Add RegCloseKey (). (open_key): Replace goto by break, remove label. Do not try to open subkey of HKEY_PERFORMANCE_DATA. Add missing RegCloseKey () after open subkey error.
Corinna Vinschen
2008-12-19 14:31:40 +0000
ca19de342dBackport link test fix from upstream Libtool:
Ralf Wildenhues
2008-12-18 21:36:44 +0000
a4fc1198a4* fhandler_disk_file.cc: Set 4th parameter of NtQueryDirectoryFile to NULL throughout. (fhandler_disk_file::facl): Fix a condition so that fstat_by_handle is actually used. (fhandler_disk_file::readdir): Don't print debug message on a simple STATUS_NO_MORE_FILES status code.
Corinna Vinschen
2008-12-18 18:54:25 +0000
dc7dfa3a82* path.cc (symlin_info::check): Set 4th parameter of NtQueryDirectoryFile to NULL instead of 0 since it's a pointer. Simplify label and break from loop handling in symlink evaluation conditional expression. Drop a now useless break statement. Fix behaviour when searching for `foo' and then finding a `foo.lnk' which is no shortcut.
Corinna Vinschen
2008-12-18 15:37:19 +0000
676c617704* config.sub, config.guess: Update from upstream sources.
Ben Elliston
2008-12-18 03:26:46 +0000
0b452bd66c2008-12-17 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston
2008-12-17 23:16:07 +0000
a3cf0304782008-12-17 Jon Beniston <jon@beniston.com>
Jeff Johnston
2008-12-17 23:09:09 +0000
d78a82f9392008-12-17 Jon Beniston <jon@beniston.com>
Jeff Johnston
2008-12-17 23:08:09 +0000
b7d584e6432008-12-16 Paolo Bonzini <bonzini@gnu.org>
Paolo Bonzini
2008-12-16 12:31:18 +0000
2cc8b9e014* fhandler_registry.cc (DEFAULT_VALUE_NAME): Remove constant. (encode_regname): Encode empty (default) name to "@". Encode "@" to "%40". Change error return to -1. (decode_regname): Decode "@" to empty name. Decode "%40" to "@". (fhandler_registry::exists): Skip check for keys if name is empty. Remove check for DEFAULT_VALUE_NAME, now handled by decode_regname (). (fhandler_registry::readdir): Remove check for empty name, now handled by encode_regname (). (fhandler_registry::open): Remove check for DEFAULT_VALUE_NAME. (fhandler_registry::open_key): Fail with ENOENT if key name is empty.
Corinna Vinschen
2008-12-16 09:20:05 +0000
1348f65bb9* syscalls.cc (gen_full_path_at): Use isabspath instead of isdirsep to recognize absolute path.
Corinna Vinschen
2008-12-15 20:53:18 +0000
cdb0b909562008-12-15 Jeff Johnston <jjohnstn@redhat.com>
Jeff Johnston
2008-12-15 20:31:47 +0000
658fe9ec36* sec_auth.cc (open_local_policy): Set lsa handle to INVALID_HANDLE_VALUE when LsaOpenPolicy fails. Explain why.
Corinna Vinschen
2008-12-15 20:25:44 +0000