summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2014-05-08 12:15:27 +0200
committerLars-Dominik Braun <lars@6xq.net>2014-05-08 12:15:27 +0200
commitb534a3bf3133a2fc7f0024dbe8df77410dba6111 (patch)
treefd999863aba8e53080e3e07505a665695c3bff53 /src
parentc91c79fb67304ba080a869ad05d58715fbc6ddc8 (diff)
downloadpianobar-b534a3bf3133a2fc7f0024dbe8df77410dba6111.tar.gz
pianobar-b534a3bf3133a2fc7f0024dbe8df77410dba6111.tar.bz2
pianobar-b534a3bf3133a2fc7f0024dbe8df77410dba6111.zip
piano: Fix include guard of crypt.h
Missed that one in 4d8ad7d87072bc1631d0b949930f4869e56b7b99. Fixes #449.
Diffstat (limited to 'src')
-rw-r--r--src/libpiano/crypt.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libpiano/crypt.h b/src/libpiano/crypt.h
index baede76..fc7c205 100644
--- a/src/libpiano/crypt.h
+++ b/src/libpiano/crypt.h
@@ -21,8 +21,8 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
-#ifndef _CRYPH_H
-#define _CRYPT_H
+#ifndef SRC_LIBPIANO_CRYPT_H_O832IVGK
+#define SRC_LIBPIANO_CRYPT_H_O832IVGK
#ifdef __FreeBSD__
#define _GCRYPT_IN_LIBGCRYPT
@@ -33,4 +33,4 @@ char *PianoDecryptString (gcry_cipher_hd_t, const char * const,
size_t * const);
char *PianoEncryptString (gcry_cipher_hd_t, const char *);
-#endif /* _CRYPT_H */
+#endif /* SRC_LIBPIANO_CRYPT_H_O832IVGK */