aboutsummaryrefslogtreecommitdiffstats
path: root/uncrustify.sh
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2014-07-23 12:53:08 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2014-07-23 12:53:08 +0100
commitfe79d8c5a39f2b717f78cc3f3ef21b3cfc46500b (patch)
treec84e6a5d4c5cd78a7a2cc3c7adbc7af5d0541682 /uncrustify.sh
parente0483657ff6cf1adc828ccce457814d61fe90a0d (diff)
downloadrspamd-fe79d8c5a39f2b717f78cc3f3ef21b3cfc46500b.tar.gz
rspamd-fe79d8c5a39f2b717f78cc3f3ef21b3cfc46500b.zip
Revert "Unify code style."
This reverts commit e0483657ff6cf1adc828ccce457814d61fe90a0d.
Diffstat (limited to 'uncrustify.sh')
-rwxr-xr-xuncrustify.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/uncrustify.sh b/uncrustify.sh
deleted file mode 100755
index 65058736c..000000000
--- a/uncrustify.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-for d in src src/libserver src/client src/libmime src/libutil src/lua src/classifiers src/tokenizers src/plugins ; do
- file_list=`find ${d} -maxdepth 1 -name "*.c" -or -name "*.h" -type f`
- for file2indent in $file_list
- do
- echo "Indenting file $file2indent"
- uncrustify -f "$file2indent" -c "./uncrustify.cfg" -o indentoutput.tmp
- mv indentoutput.tmp "$file2indent"
- done
-done