diff options
author | Lennart Poettering <lennart@poettering.net> | 2013-10-31 16:23:06 +0100 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2014-02-23 12:01:39 +0000 |
commit | 99af0b814cc849298a7acf9236bfa9847a38685d (patch) | |
tree | def6522e210fdb3f2ebcae26184726cf36f2e634 /src/detect-virt | |
parent | 457490196dbf2ad0cd1a31cfd63b8eb9606e9981 (diff) |
virt: move caching of virtualization check results into detect_vm() and detect_container()
After all, we ended up calling detect_container() more often than
detect_virtualization(), hence the former one should cache the results,
since the latter is only a wrapper around the former.
Diffstat (limited to 'src/detect-virt')
-rw-r--r-- | src/detect-virt/detect-virt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/detect-virt/detect-virt.c b/src/detect-virt/detect-virt.c index bd3ee452c..72ff2a858 100644 --- a/src/detect-virt/detect-virt.c +++ b/src/detect-virt/detect-virt.c @@ -114,8 +114,8 @@ static int parse_argv(int argc, char *argv[]) { int main(int argc, char *argv[]) { const char *id = NULL; - int r; int retval = EXIT_SUCCESS; + int r; /* This is mostly intended to be used for scripts which want * to detect whether we are being run in a virtualized |