- fixed log-to-syslog behavior

- added patch against strongswan-2.6.4
This commit is contained in:
Martin Willi
2006-04-20 07:06:39 +00:00
parent ec6582ccaa
commit 8bc96e08cb
16 changed files with 1015 additions and 15 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
FILES=`find . -name '*.[ch]'`
for FILE in $FILES
do
TMP=${FILE}_tmp
sed "s/$1/$2/g" < $FILE > $TMP
mv $TMP $FILE
done