X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fcommon%2Fsession-descriptor.c;h=f111320e44c564b7b202cf39e2bc1260da85ecae;hp=6dea5ee7c09de528ed998113f64502f7748ea75e;hb=16100d7ad8517131cc3ef29743e325184802ad13;hpb=ca258a7d30510f01d0760f4f529fed2bb5821b9a diff --git a/src/common/session-descriptor.c b/src/common/session-descriptor.c index 6dea5ee7c..f111320e4 100644 --- a/src/common/session-descriptor.c +++ b/src/common/session-descriptor.c @@ -1,18 +1,7 @@ /* - * Copyright (C) 2019 - Jérémie Galarneau + * Copyright (C) 2019 Jérémie Galarneau * - * This library is free software; you can redistribute it and/or modify it - * under the terms of the GNU Lesser General Public License, version 2.1 only, - * as published by the Free Software Foundation. - * - * This library is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License - * for more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this library; if not, write to the Free Software Foundation, - * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + * SPDX-License-Identifier: GPL-2.0-only */ #include @@ -1176,26 +1165,3 @@ int lttng_session_descriptor_assign( end: return ret; } - -LTTNG_HIDDEN -int lttng_session_descriptor_get_base_path(struct lttng_session_descriptor *dst, - const char **_base_path) -{ - switch (dst->output_type) { - case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NETWORK: - { - if (dst->output.network.control && - dst->output.network.control->subdir[0]) { - *_base_path = dst->output.network.control->subdir; - } else { - *_base_path = NULL; - } - break; - } - case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_LOCAL: - case LTTNG_SESSION_DESCRIPTOR_OUTPUT_TYPE_NONE: - *_base_path = NULL; - break; - } - return 0; -}