Security plugin: adding support for l access type 81/13381/1 accepted/tizen/20131207.002837 accepted/tizen/20131209.172435 accepted/tizen/20131213.021220 accepted/tizen/generic/20140106.135159 accepted/tizen/mobile/20131216.220231 submit/tizen/20131204.161726 submit/tizen/20131213.021127
authorElena Reshetova <elena.reshetova@intel.com>
Wed, 4 Dec 2013 09:56:07 +0000 (11:56 +0200)
committerElena Reshetova <elena.reshetova@intel.com>
Wed, 4 Dec 2013 10:07:45 +0000 (12:07 +0200)
Change-Id: Id61dd99ef2e6a673d3c66a58d71c735b07571970

plugins/msmmanifest.c

index d1f211b..5c14e09 100644 (file)
@@ -57,7 +57,7 @@ static int msmVerifyAccessType(const char* type)
         }
         while ( type[idx] != '\0' ){
             if ((type[idx] !='a') && (type[idx]!='r') && (type[idx]!='w') &&
-                (type[idx]!='x') && (type[idx]!='t') && (type[idx] !='-')) {
+                (type[idx]!='x') && (type[idx]!='t') && (type[idx]!='l') && (type[idx] !='-')) {
                 rpmlog(RPMLOG_ERR, "Not allowed character in access type: %s\n", type);
                 res = -1;
                 break;