summaryrefslogtreecommitdiffstats
path: root/libvncclient
diff options
context:
space:
mode:
authorChristian Beier <dontmind@freeshell.org>2017-09-02 18:05:46 +0200
committerChristian Beier <dontmind@freeshell.org>2017-09-02 18:05:57 +0200
commit6814e946e0afed20a6ef0f45a9bcbfeda2e77706 (patch)
tree5d623a164ce4b728050569e102f39299da3fd284 /libvncclient
parentdf11e806a31ec0fe0f3f58917ed1e98769adb910 (diff)
downloadlibtdevnc-6814e946e0afed20a6ef0f45a9bcbfeda2e77706.tar.gz
libtdevnc-6814e946e0afed20a6ef0f45a9bcbfeda2e77706.zip
libvncclient: rename rfbsasl.[c|h] to sasl.[c|h] to be in line with naming of other files
Diffstat (limited to 'libvncclient')
-rw-r--r--libvncclient/rfbproto.c2
-rw-r--r--libvncclient/sasl.c (renamed from libvncclient/rfbsasl.c)4
-rw-r--r--libvncclient/sasl.h (renamed from libvncclient/rfbsasl.h)6
-rw-r--r--libvncclient/sockets.c2
4 files changed, 7 insertions, 7 deletions
diff --git a/libvncclient/rfbproto.c b/libvncclient/rfbproto.c
index 572af9d..df8b6d0 100644
--- a/libvncclient/rfbproto.c
+++ b/libvncclient/rfbproto.c
@@ -66,7 +66,7 @@
#include <gcrypt.h>
#endif
-#include "rfbsasl.h"
+#include "sasl.h"
#include "minilzo.h"
#include "tls.h"
diff --git a/libvncclient/rfbsasl.c b/libvncclient/sasl.c
index dc7d3bc..0530307 100644
--- a/libvncclient/rfbsasl.c
+++ b/libvncclient/sasl.c
@@ -26,7 +26,7 @@
*/
/*
- * rfbsasl.c - functions to deal with client side of the SASL protocol.
+ * sasl.c - functions to deal with client side of the SASL protocol.
*/
#ifdef __STRICT_ANSI__
@@ -54,7 +54,7 @@
#include <arpa/inet.h>
#endif /* WIN32 */
-#include "rfbsasl.h"
+#include "sasl.h"
#include "tls.h"
diff --git a/libvncclient/rfbsasl.h b/libvncclient/sasl.h
index 2936364..5a52149 100644
--- a/libvncclient/rfbsasl.h
+++ b/libvncclient/sasl.h
@@ -1,5 +1,5 @@
-#ifndef RFBSASL_H
-#define RFBSASL_H
+#ifndef SASL_H
+#define SASL_H
/*
* Copyright (C) 2017 S. Waterman. All Rights Reserved.
@@ -36,4 +36,4 @@ int ReadFromSASL(rfbClient* client, char *out, unsigned int n);
#endif /* LIBVNCSERVER_HAVE_SASL */
-#endif /* RFBSASL_H */
+#endif /* SASL_H */
diff --git a/libvncclient/sockets.c b/libvncclient/sockets.c
index 2d505c7..ed2deef 100644
--- a/libvncclient/sockets.c
+++ b/libvncclient/sockets.c
@@ -58,7 +58,7 @@
#include <netdb.h>
#endif
#include "tls.h"
-#include "rfbsasl.h"
+#include "sasl.h"
#ifdef _MSC_VER
# define snprintf _snprintf