From be231b0db196513036ee624dc5b9b87c4f898625 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 15 Aug 2014 11:03:15 -0400 Subject: [PATCH] Add scripts/coccinelle to scripts/README --- scripts/README | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/README b/scripts/README index 70c763923..02faabe06 100644 --- a/scripts/README +++ b/scripts/README @@ -56,3 +56,8 @@ for servers to choose from. codegen/get_mozilla_ciphers.py -- Generate a list of TLS ciphersuites for clients to use in order to look like Firefox. +Code transformation scripts +--------------------------- + +coccinelle/calloc.cocci -- Transform code to replace variants of +malloc(a*b) with calloc(a,b)