diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/browser-cli.h | 2 | ||||
| -rw-r--r-- | src/server-cli.c | 4 | ||||
| -rw-r--r-- | src/server-cli.h | 2 | ||||
| -rw-r--r-- | src/server-connection.c | 4 | ||||
| -rw-r--r-- | src/server-connection.h | 2 | ||||
| -rw-r--r-- | src/server.c | 8 |
6 files changed, 11 insertions, 11 deletions
diff --git a/src/browser-cli.h b/src/browser-cli.h index a164dc9..8709231 100644 --- a/src/browser-cli.h +++ b/src/browser-cli.h @@ -1,7 +1,7 @@ #ifndef BROWSER_CLI #define BROWSER_CLI -#include <sds/sds.h> +#include "sds/sds.h" void initRendering(); void freeRendering(); diff --git a/src/server-cli.c b/src/server-cli.c index 707c3ef..5e84ff6 100644 --- a/src/server-cli.c +++ b/src/server-cli.c @@ -1,5 +1,5 @@ -#include <util.h> -#include <server-connection.h> +#include "util.h" +#include "server-connection.h" #include <stdio.h> #include <signal.h> #include <unistd.h> diff --git a/src/server-cli.h b/src/server-cli.h index b5b5875..8bc6ff2 100644 --- a/src/server-cli.h +++ b/src/server-cli.h @@ -1,7 +1,7 @@ #ifndef H_SERVER_CLI #define H_SERVER_CLI -#include <sds/sds.h> +#include "sds/sds.h" void handleCLI(sds **vhosts, int vhostsc); diff --git a/src/server-connection.c b/src/server-connection.c index 466b259..3edd120 100644 --- a/src/server-connection.c +++ b/src/server-connection.c @@ -1,4 +1,4 @@ -#include <server-connection.h> +#include "server-connection.h" #include <stdio.h> #include <unistd.h> @@ -6,7 +6,7 @@ #include <sys/stat.h> #include <string.h> -#include <util.h> +#include "util.h" sds constructFilePath(const sds root, const char* file); void sanitizeAddress(char* address); diff --git a/src/server-connection.h b/src/server-connection.h index 71447ff..689fbf4 100644 --- a/src/server-connection.h +++ b/src/server-connection.h @@ -1,7 +1,7 @@ #ifndef H_SERVER_CONNECTION #define H_SERVER_CONNECTION -#include <sds/sds.h> +#include "sds/sds.h" #define vh_user 0 #define vh_path 1 diff --git a/src/server.c b/src/server.c index aeff800..1c157fe 100644 --- a/src/server.c +++ b/src/server.c @@ -14,11 +14,11 @@ #include <sys/select.h> #include <string.h> -#include <sds/sds.h> -#include <util.h> +#include "sds/sds.h" +#include "util.h" -#include <server-connection.h> -#include <server-cli.h> +#include "server-connection.h" +#include "server-cli.h" int createCommunicationSocket(const char* ip, const char* port) { int fd_socket = socket(AF_INET, SOCK_STREAM | SOCK_NONBLOCK, 0); |
