From: Wayne Davison Date: Sat, 23 Feb 2008 16:14:18 +0000 (-0800) Subject: Added a default to the new switch in str_acl_type(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/d07edfc8956be775ab92b96bd5b3f9a01eb03e6c?hp=85b057cccff3e3df925e481f889ff4678a594c19 Added a default to the new switch in str_acl_type(). --- diff --git a/acls.c b/acls.c index 3670a4da..a233ee1a 100644 --- a/acls.c +++ b/acls.c @@ -101,6 +101,8 @@ static const char *str_acl_type(SMB_ACL_TYPE_T type) #endif case SMB_ACL_TYPE_DEFAULT: return "ACL_TYPE_DEFAULT"; + default: + break; } return "unknown ACL type!"; }