aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2023-10-31 16:00:07 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2023-10-31 16:00:07 -0400
commit4e68e68792bbf9849512d14f195beb3a612d7eef (patch)
tree4b30c7120a93ecb6163f6dd0bcc699de381512d5
parent6bb8c0b50ef01bcb7adae010bec0ba7eb44e6a57 (diff)
downloadstasis-4e68e68792bbf9849512d14f195beb3a612d7eef.tar.gz
Remove or disable dead code
-rw-r--r--src/main.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/main.c b/src/main.c
index 9097166..bbe177e 100644
--- a/src/main.c
+++ b/src/main.c
@@ -7,7 +7,7 @@
#include <time.h>
#include <sys/utsname.h>
#include "ohmycal.h"
-#include "wheel.h"
+//#include "wheel.h"
const char *VERSION = "1.0.0";
const char *AUTHOR = "Joseph Hunkeler";
@@ -94,7 +94,6 @@ int main(int argc, char *argv[], char *arge[]) {
msg(OMC_MSG_L2, "Reading OMC delivery configuration: %s\n", delivery_input);
ini = ini_open(delivery_input);
- //ini_show(ini);
printf(BANNER, VERSION, AUTHOR);
@@ -157,9 +156,6 @@ int main(int argc, char *argv[], char *arge[]) {
exit(1);
}
- time(&timenow);
- tm_info = localtime(&timenow);
-
// Execute configuration-defined tests
msg(OMC_MSG_L1, "Begin test execution\n");
delivery_tests_run(&ctx);