fiss

Friedel's Initialization and Service Supervision
Log | Files | Refs | LICENSE

commit f74b7639488263c89d8666e993b7080922a9ff0c
parent ff4f9784d2c57520a2f384c28174224a7c5335c1
Author: Friedel Schön <[email protected]>
Date:   Fri, 19 May 2023 13:19:42 +0200

update version II

Diffstat:
Mreadme.md | 2+-
Msrc/message.c | 4+++-
2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/readme.md b/readme.md @@ -1,6 +1,6 @@ # FISS (Friedel's Initialization and Service Supervision) -> 0.1.0 (May 2023) +> 0.2.2 (May 2023) FISS is a lightweight and easy-to-use tool for initializing and supervising long-running services on Unix-like systems. It provides a simple and reliable way to start, stop, and monitor services. It supports automatic restarts, logging, and customizable startup options. diff --git a/src/message.c b/src/message.c @@ -1,5 +1,7 @@ #include "message.h" +#include "config.h" + #include <libgen.h> #include <stdio.h> #include <stdlib.h> @@ -45,6 +47,6 @@ void print_usage_exit(prog_t prog, int status) { } void print_version_exit(void) { - printf(FISS_VERSION_STRING); + printf(SV_VERSION); exit(0); }