libvirt/src/security
Osier Yang bc95be5dea cleanup: Remove the duplicate header
Detected by a simple Shell script:

for i in $(git ls-files -- '*.[ch]'); do
    awk 'BEGIN {
        fail=0
    }
    /# *include.*\.h/{
        match($0, /["<][^">]*[">]/)
        arr[substr($0, RSTART+1, RLENGTH-2)]++
    }
    END {
        for (key in arr) {
            if (arr[key] > 1) {
                fail=1
                printf("%d %s\n", arr[key], key)
            }
        }
        if (fail == 1)
            exit 1
    }' $i

    if test $? != 0; then
        echo "Duplicate header(s) in $i"
    fi
done;

A later patch will add the syntax-check to avoid duplicate
headers.
2013-04-17 15:49:35 +08:00
..
security_apparmor.c apparmor: use AppArmorSetFDLabel for both imageFD and tapFD 2013-03-08 10:56:07 +08:00
security_apparmor.h maint: fix up copyright notice inconsistencies 2012-09-20 16:30:55 -06:00
security_dac.c Add SELinux and DAC labeling support for TPM passthrough 2013-04-12 16:55:46 -04:00
security_dac.h maint: fix up copyright notice inconsistencies 2012-09-20 16:30:55 -06:00
security_driver.c Rename virterror.c virterror_internal.h to virerror.{c,h} 2012-12-21 11:19:50 +00:00
security_driver.h security: add new virSecurityManagerSetChildProcessLabel API 2013-02-13 16:11:16 -05:00
security_manager.c security_manager: fix comparison 2013-04-03 22:57:31 +02:00
security_manager.h security: add new virSecurityManagerSetChildProcessLabel API 2013-02-13 16:11:16 -05:00
security_nop.c security: add new virSecurityManagerSetChildProcessLabel API 2013-02-13 16:11:16 -05:00
security_nop.h maint: fix up copyright notice inconsistencies 2012-09-20 16:30:55 -06:00
security_selinux.c cleanup: Remove the duplicate header 2013-04-17 15:49:35 +08:00
security_selinux.h maint: fix up copyright notice inconsistencies 2012-09-20 16:30:55 -06:00
security_stack.c security: add new virSecurityManagerSetChildProcessLabel API 2013-02-13 16:11:16 -05:00
security_stack.h security: fix #endif comment in security_stack.h 2012-12-20 19:55:54 +01:00
virt-aa-helper.c virCaps: get rid of defaultConsoleTargetType callback 2013-04-04 22:42:39 +02:00