Commit d56b34ca68312ba3f98bebf6c4a458465c055255

Stefan Sperling 2020-01-29T13:13:48

just return 0 instead of EXIT_SUCCESS

1
2
3
4
5
6
7
8
9
10
11
diff --git a/gotweb/gotweb.c b/gotweb/gotweb.c
index afa9545..3d742cb 100644
--- a/gotweb/gotweb.c
+++ b/gotweb/gotweb.c
@@ -2897,5 +2897,5 @@ done:
 	}
 
 	khttp_free(gw_trans->gw_req);
-	return EXIT_SUCCESS;
+	return 0;
 }