aboutsummaryrefslogtreecommitdiffstats
path: root/Source/scripts/replace
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2006-04-28 07:14:48 +0000
committerMartin Willi <martin@strongswan.org>2006-04-28 07:14:48 +0000
commit997358a6c475c8886cce388ab325184a1ff733c9 (patch)
tree27a15790e030fc186d00cd710d2a3540f4defe69 /Source/scripts/replace
parent52923c9acb349adec3d1cc039e7a74c2e822da6e (diff)
downloadstrongswan-997358a6c475c8886cce388ab325184a1ff733c9.tar.bz2
strongswan-997358a6c475c8886cce388ab325184a1ff733c9.tar.xz
- import of strongswan-2.7.0
- applied patch for charon
Diffstat (limited to 'Source/scripts/replace')
-rwxr-xr-xSource/scripts/replace9
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/scripts/replace b/Source/scripts/replace
deleted file mode 100755
index adfc8e09a..000000000
--- a/Source/scripts/replace
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/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