diff options
author | cbdev <cb@cbcdn.com> | 2019-08-25 13:28:41 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2019-08-25 13:28:41 +0200 |
commit | 8b963149b497464eec314766fb84d770241ac011 (patch) | |
tree | 4c78e299de7032250c8f821ef59dea69169783af /plugins | |
parent | 4256eaae74f6f27167f84e2d469deaa3da3403bc (diff) | |
download | websocksy-8b963149b497464eec314766fb84d770241ac011.tar.gz websocksy-8b963149b497464eec314766fb84d770241ac011.tar.bz2 websocksy-8b963149b497464eec314766fb84d770241ac011.zip |
Include ctype for backend_file
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/backend_file.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/backend_file.c b/plugins/backend_file.c index 980a203..ccc6b0a 100644 --- a/plugins/backend_file.c +++ b/plugins/backend_file.c @@ -1,6 +1,7 @@ #include "backend_file.h" #include <string.h> #include <stdio.h> +#include <ctype.h> //FIXME allocated this statically because i dont want to do it properly right now tbh #define BACKEND_FILE_MAX_PATH 8192 |