action list: missing renames from previous name "group"
[lttng-tools.git] / src / common / actions / action.c
index d4b9c09ebfab716f6a7d2becd13d2e953f1871c9..498e41f79405fb2fe71488f91c29b4cdec1ef907 100644 (file)
@@ -8,7 +8,7 @@
 #include <assert.h>
 #include <common/error.h>
 #include <lttng/action/action-internal.h>
-#include <lttng/action/group-internal.h>
+#include <lttng/action/list-internal.h>
 #include <lttng/action/notify-internal.h>
 #include <lttng/action/rate-policy-internal.h>
 #include <lttng/action/rotate-session-internal.h>
@@ -23,8 +23,8 @@ const char *lttng_action_type_string(enum lttng_action_type action_type)
        switch (action_type) {
        case LTTNG_ACTION_TYPE_UNKNOWN:
                return "UNKNOWN";
-       case LTTNG_ACTION_TYPE_GROUP:
-               return "GROUP";
+       case LTTNG_ACTION_TYPE_LIST:
+               return "LIST";
        case LTTNG_ACTION_TYPE_NOTIFY:
                return "NOTIFY";
        case LTTNG_ACTION_TYPE_ROTATE_SESSION:
@@ -191,8 +191,8 @@ ssize_t lttng_action_create_from_payload(struct lttng_payload_view *view,
                create_from_payload_cb =
                                lttng_action_stop_session_create_from_payload;
                break;
-       case LTTNG_ACTION_TYPE_GROUP:
-               create_from_payload_cb = lttng_action_group_create_from_payload;
+       case LTTNG_ACTION_TYPE_LIST:
+               create_from_payload_cb = lttng_action_list_create_from_payload;
                break;
        default:
                ERR("Failed to create action from payload, unhandled action type: action-type=%u (%s)",
This page took 0.023229 seconds and 4 git commands to generate.