diff options
-rw-r--r-- | src/shared/device-nodes.c | 1 | ||||
-rw-r--r-- | src/shared/virt.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/shared/device-nodes.c b/src/shared/device-nodes.c index 658d3eaec3..f03fbd9d8c 100644 --- a/src/shared/device-nodes.c +++ b/src/shared/device-nodes.c @@ -19,7 +19,6 @@ #include <stdlib.h> #include <stdio.h> -#include <string.h> #include <stdint.h> #include <sys/types.h> diff --git a/src/shared/virt.c b/src/shared/virt.c index 4b1e8c62e0..96b3f5671f 100644 --- a/src/shared/virt.c +++ b/src/shared/virt.c @@ -86,6 +86,8 @@ int detect_container(const char **id) { _id = "lxc-libvirt"; else if (streq(e, "systemd-nspawn")) _id = "systemd-nspawn"; + else if (streq(e, "docker")) + _id = "docker"; else _id = "other"; |