summaryrefslogtreecommitdiffstats
path: root/src/detection/os/os_nbsd.c
blob: 200d0f2cf4ff24890fed4c0a905741c6674ce757 (plain) (blame)
1
2
3
4
5
6
#include "os.h"

void ffDetectOSImpl(FFOSResult* os) {
    ffStrbufSetStatic(&os->name, "NetBSD");
    ffStrbufSet(&os->version, &instance.state.platform.sysinfo.release);
}