summaryrefslogtreecommitdiff
path: root/third_party/srtp/update.sh
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-01-23 20:17:42 +0000
committerBenny Prijono <bennylp@teluu.com>2008-01-23 20:17:42 +0000
commit78a92f35ea2593b35b1aa1312aeab4999a0811cf (patch)
tree302edf3b1c571fa11a169ae3d74eb7f2d30a523b /third_party/srtp/update.sh
parent19ab0113d44a93f576eabe71bd966603fc4c81ef (diff)
Ticket #61: imported libsrtp into third_party directory (backported from srtp branch)
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@1730 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'third_party/srtp/update.sh')
-rw-r--r--third_party/srtp/update.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/srtp/update.sh b/third_party/srtp/update.sh
new file mode 100644
index 00000000..595b647f
--- /dev/null
+++ b/third_party/srtp/update.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+#
+# update.sh
+#
+# update copyright dates in files
+
+a=`find . -name "*.[ch]"`
+for x in $a; do
+ sed 's/(c) 2001-2005/(c) 2001-2006/' $x > $x.tmp;
+ mv $x.tmp $x;
+done
+
+
+
+