Skip to content

Commit 41f28b3

Browse files
committed
DEV: phash: Update 414 and 431 status codes to phash
The phash tool was updated to reflect the previous change. 414 and 431 are now part of the handled status codes.
1 parent 62dc875 commit 41f28b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dev/phash/a.out

16.5 KB
Binary file not shown.

dev/phash/phash.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
//const int codes[CODES] = { 200,400,401,403,404,405,407,408,410,413,421,422,425,429,500,501,502,503,504};
1818

1919
#define CODES 32
20-
const int codes[CODES] = { 200,400,401,403,404,405,407,408,410,413,421,422,425,429,500,501,502,503,504,
20+
const int codes[CODES] = { 200,400,401,403,404,405,407,408,410,413,414,421,422,425,429,431,500,501,502,503,504,
2121
/* padding entries below, which will fall back to the default code */
22-
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1};
22+
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1};
2323

2424
unsigned mul, xor;
2525
unsigned bmul = 0, bxor = 0;

0 commit comments

Comments
 (0)