diff options
author | Raphael Kubo da Costa <rakuco@FreeBSD.org> | 2012-09-11 22:50:10 +0300 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2012-09-14 18:46:58 +0200 |
commit | 88e60435854e7f8edf085a5f4564c7e8cd847699 (patch) | |
tree | 46d442c0933fb692d3edffa7caa7827483858865 | |
parent | 539b310b48e2f9b685a5418f01ecf6257ef6452e (diff) | |
download | libtdevnc-88e60435854e7f8edf085a5f4564c7e8cd847699.tar.gz libtdevnc-88e60435854e7f8edf085a5f4564c7e8cd847699.zip |
Correctly include rfbconfig.h.
build_dir/rfb is not passed as an include directory automatically to
the compiler, so including that file fails.
-rw-r--r-- | libvncserver/websockets.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libvncserver/websockets.c b/libvncserver/websockets.c index 8cd96d3..8a12a5a 100644 --- a/libvncserver/websockets.c +++ b/libvncserver/websockets.c @@ -33,7 +33,7 @@ #include <byteswap.h> #include <string.h> -#include "rfbconfig.h" +#include "rfb/rfbconfig.h" #include "rfbssl.h" #include "rfbcrypto.h" |