]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
datasets: remove experimental warning 5407/head
authorVictor Julien <victor@inliniac.net>
Thu, 10 Sep 2020 19:52:44 +0000 (21:52 +0200)
committerVictor Julien <victor@inliniac.net>
Thu, 10 Sep 2020 19:53:01 +0000 (21:53 +0200)
src/datasets.c

index c870207c44f948d9648737805260f92ced9e2e7b..53cff715b91018a547959b2e4ef3f6464d5d65f3 100644 (file)
@@ -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) {