[Forensics-changes] [yara] 243/368: Break line with more than 80 columns
Hilko Bengen
bengen at moszumanska.debian.org
Sat Jul 1 10:30:44 UTC 2017
This is an automated email from the git hooks/post-receive script.
bengen pushed a commit to annotated tag v3.5.0
in repository yara.
commit a330507ddb2258e5af548488a75e88be6d9fe507
Author: plusvic <plusvic at gmail.com>
Date: Tue Mar 22 13:11:50 2016 +0100
Break line with more than 80 columns
---
yara.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/yara.c b/yara.c
index 838433e..7f23bac 100644
--- a/yara.c
+++ b/yara.c
@@ -318,7 +318,9 @@ void scan_dir(
{
file_queue_put(full_path);
}
- else if (recursive && strcmp(FindFileData.cFileName, ".") != 0 && strcmp(FindFileData.cFileName, "..") != 0)
+ else if (recursive &&
+ strcmp(FindFileData.cFileName, ".") != 0 &&
+ strcmp(FindFileData.cFileName, "..") != 0)
{
scan_dir(full_path, recursive, start_time, rules, callback);
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/forensics/yara.git
More information about the forensics-changes
mailing list