* fhandler_disk_file.cc (fhandler_disk_file::facl): Add missing break.
This commit is contained in:
parent
677ded600c
commit
f1fb564952
|
@ -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>
|
2005-06-24 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* path.cc (path_conv::check): Don't strip trailing dots and spaces
|
* path.cc (path_conv::check): Don't strip trailing dots and spaces
|
||||||
|
|
|
@ -626,6 +626,7 @@ fhandler_disk_file::facl (int cmd, int nentries, __aclent32_t *aclbufp)
|
||||||
break;
|
break;
|
||||||
case GETACLCNT:
|
case GETACLCNT:
|
||||||
res = getacl (get_io_handle (), pc, pc, 0, NULL);
|
res = getacl (get_io_handle (), pc, pc, 0, NULL);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
set_errno (EINVAL);
|
set_errno (EINVAL);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue