Skip to content

Commit

Permalink
fix compile on non x86
Browse files Browse the repository at this point in the history
  • Loading branch information
voipmonitor committed Nov 28, 2023
1 parent 725b426 commit 05c10e7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1370,7 +1370,9 @@ bool cSnifferClientService::receive_process_loop_begin() {
"change the deduplication type because it is set differently on the server" :
"enabling deduplicate because it is enabled on server");
opt_dup_check = server_dup_check;
#if defined(__x86_64__) or defined(__i386__)
if(opt_dup_check == 3 && !crc32_sse_is_available()) opt_dup_check = 2; // do not force SSE 4.2 version if we do not have it
#endif
change_config = true;
}
}
Expand Down

0 comments on commit 05c10e7

Please sign in to comment.