diff options
| author | Eli Zaretskii | 2008-05-09 19:03:52 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-05-09 19:03:52 +0000 |
| commit | 8aaaec6b622da9620c85862a7cb717d4aee2276f (patch) | |
| tree | 36df47a50386d7c7843ec718252e5a7aeb28ec52 /src/ChangeLog | |
| parent | 71e41ffb85e94bf77260acdb71eed141e6756a6f (diff) | |
| download | emacs-8aaaec6b622da9620c85862a7cb717d4aee2276f.tar.gz emacs-8aaaec6b622da9620c85862a7cb717d4aee2276f.zip | |
Support for reporting owner and group of each file on MS-Windows:
* dired.c (stat_uname, stat_gname): New functions, with special
implementation for w32.
(Ffile_attributes): Use them instead of getpwuid and getgrgid.
* w32.c:
(g_b_init_get_file_security, g_b_init_get_security_descriptor_owner)
(g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid):
New initialization states.
(globals_of_w32): Initialize them to zero. Initialize the default
group name to "None".
(GetFileSecurity_Name): New global var, the name of the function
to call for GetFileSecurity.
(GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc)
(GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs.
(get_file_security, get_security_descriptor_owner)
(get_security_descriptor_group, is_valid_sid)
(get_file_security_desc, get_rid, get_name_and_id)
(get_file_owner_and_group): New functions.
(stat): Use get_file_security_desc and get_file_owner_and_group to
report the owner and primary group of each file. Don't ignore the
high 32 bits of file's size, now that st_size is 64-bit wide. Fix
test when to get true file attributes.
(init_user_info): Use get_rid instead of equivalent inline code.
(fstat): Don't ignore the high 32 bits of file's size.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 888b0f8b7c3..94c2dfc284e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,10 +1,34 @@ | |||
| 1 | 2008-05-09 Eli Zaretskii <eliz@gnu.org> | 1 | 2008-05-09 Eli Zaretskii <eliz@gnu.org> |
| 2 | 2 | ||
| 3 | Support for reporting owner and group of each file on MS-Windows: | ||
| 4 | * dired.c (stat_uname, stat_gname): New functions, with special | ||
| 5 | implementation for w32. | ||
| 6 | (Ffile_attributes): Use them instead of getpwuid and getgrgid. | ||
| 7 | |||
| 3 | * w32.c: Rename the_passwd_* to dflt_passwd_*. | 8 | * w32.c: Rename the_passwd_* to dflt_passwd_*. |
| 4 | (dflt_group_name): New static variable. | 9 | (dflt_group_name): New static variable. |
| 5 | (dflt_group): Renamed from the_group. | 10 | (dflt_group): Renamed from the_group. |
| 6 | (init_user_info): Init dflt_group fields. Get user's group name | 11 | (init_user_info): Init dflt_group fields. Get user's group name |
| 7 | from LookupAccountSid. | 12 | from LookupAccountSid. |
| 13 | (g_b_init_get_file_security, g_b_init_get_security_descriptor_owner) | ||
| 14 | (g_b_init_get_security_descriptor_group, g_b_init_is_valid_sid): | ||
| 15 | New initialization states. | ||
| 16 | (globals_of_w32): Initialize them to zero. Initialize the default | ||
| 17 | group name to "None". | ||
| 18 | (GetFileSecurity_Name): New global var, the name of the function | ||
| 19 | to call for GetFileSecurity. | ||
| 20 | (GetFileSecurity_Proc, GetSecurityDescriptorOwner_Proc) | ||
| 21 | (GetSecurityDescriptorGroup_Proc, IsValidSid_Proc): New typedefs. | ||
| 22 | (get_file_security, get_security_descriptor_owner) | ||
| 23 | (get_security_descriptor_group, is_valid_sid) | ||
| 24 | (get_file_security_desc, get_rid, get_name_and_id) | ||
| 25 | (get_file_owner_and_group): New functions. | ||
| 26 | (stat): Use get_file_security_desc and get_file_owner_and_group to | ||
| 27 | report the owner and primary group of each file. Don't ignore the | ||
| 28 | high 32 bits of file's size, now that st_size is 64-bit wide. Fix | ||
| 29 | test when to get true file attributes. | ||
| 30 | (init_user_info): Use get_rid instead of equivalent inline code. | ||
| 31 | (fstat): Don't ignore the high 32 bits of file's size. | ||
| 8 | 32 | ||
| 9 | 2008-05-09 Chong Yidong <cyd@stupidchicken.com> | 33 | 2008-05-09 Chong Yidong <cyd@stupidchicken.com> |
| 10 | 34 | ||