aboutsummaryrefslogtreecommitdiffhomepage
path: root/debian/patches/angled-include-zxcvbn.h.patch
blob: 6692b00fb8e37454bcf09d7d4a62003893cd2a10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
From: Sean Whitton <spwhitton@spwhitton.name>
Date: Sat, 24 Sep 2016 07:56:26 -0700
Subject: angled include zxcvbn.h

Since we're building & testing it as shared and static libraries.

Forwarded: https://github.com/tsyrogit/zxcvbn-c/pull/8
---
 test.c   | 2 +-
 zxcvbn.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/test.c b/test.c
index 9d74ce5..bb0f8bd 100644
--- a/test.c
+++ b/test.c
@@ -34,7 +34,7 @@
 #include <string.h>
 #include <stdlib.h>
 #include <sys/time.h>
-#include "zxcvbn.h"
+#include <zxcvbn.h>
 
 /* For pre-compiled headers under windows */
 #ifdef _WIN32
diff --git a/zxcvbn.c b/zxcvbn.c
index c801ae0..bfb40b3 100644
--- a/zxcvbn.c
+++ b/zxcvbn.c
@@ -30,7 +30,7 @@
  * 
  **********************************************************************************/
 
-#include "zxcvbn.h"
+#include <zxcvbn.h>
 #include <ctype.h>
 #include <string.h>
 #include <stdint.h>