Clean-up: consumer.hpp: coding style indentation fix
[lttng-tools.git] / src / common / credentials.c
diff --git a/src/common/credentials.c b/src/common/credentials.c
deleted file mode 100644 (file)
index dc1bdd8..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Copyright (C) 2020 Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
- *
- * SPDX-License-Identifier: LGPL-2.1-only
- *
- */
-
-#include <assert.h>
-#include <stdbool.h>
-#include "credentials.h"
-
-bool lttng_credentials_is_equal(const struct lttng_credentials *a,
-               const struct lttng_credentials *b)
-{
-       assert(a);
-       assert(b);
-
-       if ((a->uid != b->uid) || (a->gid != b->gid)) {
-               return false;
-       }
-
-       return true;
-};
This page took 0.023173 seconds and 4 git commands to generate.