diff options
author | Christian Beier <dontmind@freeshell.org> | 2018-03-24 01:54:52 +0100 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2018-03-24 01:54:52 +0100 |
commit | 078590786cfc477785729620e4bc5585e13b22f7 (patch) | |
tree | 755f74736b656f3054b965aeb918f2a0cb1e7f8d /libvncclient | |
parent | 71c3215d8f2a0760337506da1d93ac4712bdaeb9 (diff) | |
download | libtdevnc-078590786cfc477785729620e4bc5585e13b22f7.tar.gz libtdevnc-078590786cfc477785729620e4bc5585e13b22f7.zip |
libvncclient/sasl: prefix the header guard (again) to fix a warning
Diffstat (limited to 'libvncclient')
-rw-r--r-- | libvncclient/sasl.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libvncclient/sasl.h b/libvncclient/sasl.h index 5a52149..2936364 100644 --- a/libvncclient/sasl.h +++ b/libvncclient/sasl.h @@ -1,5 +1,5 @@ -#ifndef SASL_H -#define SASL_H +#ifndef RFBSASL_H +#define RFBSASL_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 /* SASL_H */ +#endif /* RFBSASL_H */ |