consumerd: refactor: split read_subbuf into sub-operations
[lttng-tools.git] / src / common / session-rotation.c
index be48a998a98030d41e4cdc49793f3f3579481f4c..f8d4439de06056296e1a2bc269bc37b6b0385c22 100644 (file)
@@ -1,18 +1,8 @@
 /*
- * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
+ * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
  *
- * 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.
+ * SPDX-License-Identifier: LGPL-2.1-only
  *
- * 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
  */
 
 #include <lttng/condition/condition-internal.h>
@@ -194,7 +184,7 @@ struct lttng_condition *lttng_condition_session_rotation_create(
        }
 
        memcpy(&condition->parent, &rotation_condition_template,
-                       sizeof(*condition));
+                       sizeof(condition->parent));
        lttng_condition_init(&condition->parent, type);
        return &condition->parent;
 }
@@ -341,7 +331,7 @@ struct lttng_evaluation *lttng_evaluation_session_rotation_create(
        }
 
        memcpy(&evaluation->parent, &rotation_evaluation_template,
-                       sizeof(*evaluation));
+                       sizeof(evaluation->parent));
        lttng_evaluation_init(&evaluation->parent, type);
        evaluation->id = id;
        evaluation->location = location;
This page took 0.025586 seconds and 5 git commands to generate.