We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 869c6ce commit 82bbe5dCopy full SHA for 82bbe5d
extra_plugins/output/unirec/src/map.c
@@ -232,6 +232,8 @@ map_elem_get_internal(const char *elem)
232
return MAP_SRC_INTERNAL_LBF;
233
} else if (strcmp(elem, "_internal_dbf_") == 0) {
234
return MAP_SRC_INTERNAL_DBF;
235
+ } else if (strcmp(elem, "_internal_odid_") == 0) {
236
+ return MAP_SRC_INTERNAL_ODID;
237
} else {
238
return MAP_SRC_INVALID;
239
}
extra_plugins/output/unirec/src/map.h
@@ -58,7 +58,9 @@ enum MAP_SRC {
58
/** Internal "link bit field" converter */
59
MAP_SRC_INTERNAL_LBF,
60
/** Internal "dir bit field" converter */
61
- MAP_SRC_INTERNAL_DBF
+ MAP_SRC_INTERNAL_DBF,
62
+ /** Internal "odid field" converter */
63
+ MAP_SRC_INTERNAL_ODID
64
};
65
66
enum MAP_FLAGS {
0 commit comments