From: Kern Sibbald Date: Sun, 30 Nov 2008 16:06:51 +0000 (+0000) Subject: Fix type conversion casting X-Git-Tag: Release-3.0.0~535 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=1a0a89ca1814b562d64181a2a83c055bbb88deb3;p=bacula%2Fbacula Fix type conversion casting git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@8095 91ce42f0-d328-0410-95d8-f526ca767f89 --- diff --git a/bacula/src/filed/acl.c b/bacula/src/filed/acl.c index 6561b50e53..6e17b198c6 100644 --- a/bacula/src/filed/acl.c +++ b/bacula/src/filed/acl.c @@ -239,7 +239,7 @@ static acl_type_t bac_to_os_acltype(bacl_type acltype) * This should never happen, as the per os version function only tries acl * types supported on a certain platform. */ - ostype = ACL_TYPE_NONE; + ostype = (acl_type_t)ACL_TYPE_NONE; break; }