]> git.ipfire.org Git - thirdparty/tor.git/commit
Rename nonconformant identifiers.
authorNick Mathewson <nickm@torproject.org>
Wed, 18 Jan 2012 20:53:30 +0000 (15:53 -0500)
committerNick Mathewson <nickm@torproject.org>
Wed, 18 Jan 2012 20:53:30 +0000 (15:53 -0500)
commit26e789fbfd4e5a7e2789c1577e8eb967de3eba86
tree348d58b6bc8b8ae33ea9a5b7e8b0f755586bc534
parentd1b40cf2e7bb55d3c421e6eff476330e08ab4750
Rename nonconformant identifiers.

Fixes bug 4893.

These changes are pure mechanical, and were generated with this
perl script:

  /usr/bin/perl -w -i.bak -p

  s/crypto_pk_env_t/crypto_pk_t/g;
  s/crypto_dh_env_t/crypto_dh_t/g;
  s/crypto_cipher_env_t/crypto_cipher_t/g;
  s/crypto_digest_env_t/crypto_digest_t/g;

  s/aes_free_cipher/aes_cipher_free/g;
  s/crypto_free_cipher_env/crypto_cipher_free/g;
  s/crypto_free_digest_env/crypto_digest_free/g;
  s/crypto_free_pk_env/crypto_pk_free/g;

  s/_crypto_dh_env_get_dh/_crypto_dh_get_dh/g;
  s/_crypto_new_pk_env_rsa/_crypto_new_pk_from_rsa/g;
  s/_crypto_pk_env_get_evp_pkey/_crypto_pk_get_evp_pkey/g;
  s/_crypto_pk_env_get_rsa/_crypto_pk_get_rsa/g;

  s/crypto_new_cipher_env/crypto_cipher_new/g;
  s/crypto_new_digest_env/crypto_digest_new/g;
  s/crypto_new_digest256_env/crypto_digest256_new/g;
  s/crypto_new_pk_env/crypto_pk_new/g;

  s/crypto_create_crypto_env/crypto_cipher_new/g;

  s/connection_create_listener/connection_listener_new/g;
  s/smartlist_create/smartlist_new/g;
  s/transport_create/transport_new/g;
64 files changed:
changes/renaming_identifiers [new file with mode: 0644]
src/common/address.c
src/common/aes.c
src/common/aes.h
src/common/compat.c
src/common/container.c
src/common/container.h
src/common/crypto.c
src/common/crypto.h
src/common/log.c
src/common/tortls.c
src/common/tortls.h
src/common/util.c
src/or/circuitbuild.c
src/or/circuitbuild.h
src/or/circuitlist.c
src/or/command.c
src/or/config.c
src/or/connection.c
src/or/connection_or.c
src/or/connection_or.h
src/or/control.c
src/or/cpuworker.c
src/or/directory.c
src/or/dirserv.c
src/or/dirserv.h
src/or/dirvote.c
src/or/dirvote.h
src/or/dns.c
src/or/geoip.c
src/or/hibernate.c
src/or/main.c
src/or/microdesc.c
src/or/networkstatus.c
src/or/nodelist.c
src/or/ntmain.c
src/or/onion.c
src/or/onion.h
src/or/or.h
src/or/policies.c
src/or/relay.c
src/or/rendclient.c
src/or/rendcommon.c
src/or/rendcommon.h
src/or/rendmid.c
src/or/rendservice.c
src/or/rephist.c
src/or/router.c
src/or/router.h
src/or/routerlist.c
src/or/routerparse.c
src/or/routerparse.h
src/or/transports.c
src/test/bench.c
src/test/test.c
src/test/test.h
src/test/test_containers.c
src/test/test_crypto.c
src/test/test_dir.c
src/test/test_microdesc.c
src/test/test_pt.c
src/test/test_util.c
src/tools/tor-checkkey.c
src/tools/tor-gencert.c