summaryrefslogtreecommitdiff
path: root/src/net.c
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2020-05-15 11:47:09 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2020-10-11 20:13:04 +0100
commite316b0d3d64eb8f65f4109c1565d929b29e1d33a (patch)
tree1742e4956f2a8a91ef574cf67c6d05d91910407f /src/net.c
parent8970acb750ecf4b86883d9ea1a8cb280517e6c86 (diff)
downloadlibgit2-e316b0d3d64eb8f65f4109c1565d929b29e1d33a.tar.gz
runtime: move init/shutdown into the "runtime"
Provide a mechanism for system components to register for initialization and shutdown of the libgit2 runtime.
Diffstat (limited to 'src/net.c')
-rw-r--r--src/net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.c b/src/net.c
index dbde626b5..ac1bc4299 100644
--- a/src/net.c
+++ b/src/net.c
@@ -14,7 +14,7 @@
#include "posix.h"
#include "buffer.h"
#include "http_parser.h"
-#include "global.h"
+#include "runtime.h"
#define DEFAULT_PORT_HTTP "80"
#define DEFAULT_PORT_HTTPS "443"