Skip to content

Commit

Permalink
Fix misplaced parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
gapan committed Jul 7, 2017
1 parent 784b801 commit 6361b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd-upgrade.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
static gboolean _check_libc_libs(const gchar* path)
{
if (strncmp(path, "lib/ld-linux.so", strlen("lib/ld-linux.so") == 0) ||
if (strncmp(path, "lib/ld-linux.so", strlen("lib/ld-linux.so")) == 0 ||
strncmp(path, "lib64/ld-linux-x86-64.so", strlen("lib64/ld-linux-x86-64.so")) == 0 ||
strncmp(path, "lib/libc.so", strlen("lib/libc.so")) == 0 ||
strncmp(path, "lib64/libc.so", strlen("lib64/libc.so")) == 0 ||
Expand Down

0 comments on commit 6361b17

Please sign in to comment.