libvncclient: rename rfbsasl.[c|h] to sasl.[c|h] to be in line with naming of other files

pull/3/head
Christian Beier 7 years ago
parent df11e806a3
commit 6814e946e0
No known key found for this signature in database
GPG Key ID: 421BB3B45C6067F8

@ -338,7 +338,7 @@ endif()
if(LIBVNCSERVER_HAVE_SASL) if(LIBVNCSERVER_HAVE_SASL)
set(LIBVNCCLIENT_SOURCES set(LIBVNCCLIENT_SOURCES
${LIBVNCCLIENT_SOURCES} ${LIBVNCCLIENT_SOURCES}
${LIBVNCCLIENT_DIR}/rfbsasl.c ${LIBVNCCLIENT_DIR}/sasl.c
) )
endif() endif()

@ -66,7 +66,7 @@
#include <gcrypt.h> #include <gcrypt.h>
#endif #endif
#include "rfbsasl.h" #include "sasl.h"
#include "minilzo.h" #include "minilzo.h"
#include "tls.h" #include "tls.h"

@ -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__ #ifdef __STRICT_ANSI__
@ -54,7 +54,7 @@
#include <arpa/inet.h> #include <arpa/inet.h>
#endif /* WIN32 */ #endif /* WIN32 */
#include "rfbsasl.h" #include "sasl.h"
#include "tls.h" #include "tls.h"

@ -1,5 +1,5 @@
#ifndef RFBSASL_H #ifndef SASL_H
#define RFBSASL_H #define SASL_H
/* /*
* Copyright (C) 2017 S. Waterman. All Rights Reserved. * 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 /* LIBVNCSERVER_HAVE_SASL */
#endif /* RFBSASL_H */ #endif /* SASL_H */

@ -58,7 +58,7 @@
#include <netdb.h> #include <netdb.h>
#endif #endif
#include "tls.h" #include "tls.h"
#include "rfbsasl.h" #include "sasl.h"
#ifdef _MSC_VER #ifdef _MSC_VER
# define snprintf _snprintf # define snprintf _snprintf

Loading…
Cancel
Save