summaryrefslogtreecommitdiff
path: root/src/funcs.c
diff options
context:
space:
mode:
authorXin LI <delphij@FreeBSD.org>2016-11-07 07:26:06 +0000
committerXin LI <delphij@FreeBSD.org>2016-11-07 07:26:06 +0000
commit46a30e2e108c3996f8c1ef41888011c2a5cedaf7 (patch)
treed5b3320c0abb93ce4b48892c8cf3704e4a3ed009 /src/funcs.c
parent581c312f134935d421daea8ff9efe57e66a2beab (diff)
Diffstat (limited to 'src/funcs.c')
-rw-r--r--src/funcs.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/funcs.c b/src/funcs.c
index df8dbae67f75..c8918a45963a 100644
--- a/src/funcs.c
+++ b/src/funcs.c
@@ -27,7 +27,7 @@
#include "file.h"
#ifndef lint
-FILE_RCSID("@(#)$File: funcs.c,v 1.89 2016/03/21 15:56:53 christos Exp $")
+FILE_RCSID("@(#)$File: funcs.c,v 1.90 2016/10/19 20:51:17 christos Exp $")
#endif /* lint */
#include "magic.h"
@@ -250,7 +250,7 @@ file_buffer(struct magic_set *ms, int fd, const char *inname __attribute__ ((__u
}
/* try soft magic tests */
- if ((ms->flags & MAGIC_NO_CHECK_SOFT) == 0)
+ if ((ms->flags & MAGIC_NO_CHECK_SOFT) == 0) {
m = file_softmagic(ms, ubuf, nb, NULL, NULL, BINTEST,
looks_text);
if ((ms->flags & MAGIC_DEBUG) != 0)
@@ -277,6 +277,7 @@ file_buffer(struct magic_set *ms, int fd, const char *inname __attribute__ ((__u
if (checkdone(ms, &rv))
goto done;
}
+ }
/* try text properties */
if ((ms->flags & MAGIC_NO_CHECK_TEXT) == 0) {