From: Victor Julien Date: Thu, 10 Sep 2020 19:52:44 +0000 (+0200) Subject: datasets: remove experimental warning X-Git-Tag: suricata-6.0.0-rc1~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f21a4bc40eee0be6fb8cce6985b13970e6e6894f;p=thirdparty%2Fsuricata.git datasets: remove experimental warning --- diff --git a/src/datasets.c b/src/datasets.c index c870207c44..53cff715b9 100644 --- a/src/datasets.c +++ b/src/datasets.c @@ -38,7 +38,6 @@ SCMutex sets_lock = SCMUTEX_INITIALIZER; static Dataset *sets = NULL; static uint32_t set_ids = 0; -static bool experimental_warning = false; static int DatasetAddwRep(Dataset *set, const uint8_t *data, const uint32_t data_len, DataRepType *rep); @@ -431,10 +430,6 @@ Dataset *DatasetGet(const char *name, enum DatasetTypes type, const char *save, } SCMutexLock(&sets_lock); - if (!experimental_warning) { - SCLogNotice("dataset and datarep features are experimental and subject to change"); - experimental_warning = true; - } Dataset *set = DatasetSearchByName(name); if (set) { if (type != DATASET_TYPE_NOTSET && set->type != type) {