Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(491)

Unified Diff: libsrtp/update.sh

Issue 3423016: Add current version of libSRTP from CVS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/
Patch Set: '' Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « libsrtp/undos.sh ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libsrtp/update.sh
===================================================================
--- libsrtp/update.sh (revision 0)
+++ libsrtp/update.sh (revision 0)
@@ -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
+
+
+
+
Property changes on: libsrtp/update.sh
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:eol-style
+ LF
« no previous file with comments | « libsrtp/undos.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698