* fhandler_disk_file.cc (fhandler_disk_file::facl): Add missing break.

This commit is contained in:
Corinna Vinschen 2005-06-27 14:18:13 +00:00
parent 677ded600c
commit f1fb564952
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-06-27 Corinna Vinschen <corinna@vinschen.de>
* fhandler_disk_file.cc (fhandler_disk_file::facl): Add missing break.
2005-06-24 Corinna Vinschen <corinna@vinschen.de>
* path.cc (path_conv::check): Don't strip trailing dots and spaces

View File

@ -626,6 +626,7 @@ fhandler_disk_file::facl (int cmd, int nentries, __aclent32_t *aclbufp)
break;
case GETACLCNT:
res = getacl (get_io_handle (), pc, pc, 0, NULL);
break;
default:
set_errno (EINVAL);
break;