diff options
author | Roger Dingledine <arma@torproject.org> | 2003-09-28 06:47:29 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-09-28 06:47:29 +0000 |
commit | 677707433e562eec675d5e6e487a008364ebea5b (patch) | |
tree | 4792768667e8ffd1d735e9604405645c1a19ac0d /src/common/tortls.h | |
parent | 0e0169d6fa280f94f5e3f38a8d67b1cdb6452517 (diff) | |
download | tor-677707433e562eec675d5e6e487a008364ebea5b.tar.gz tor-677707433e562eec675d5e6e487a008364ebea5b.zip |
shift read_file_to_str() into util.c
svn:r504
Diffstat (limited to 'src/common/tortls.h')
-rw-r--r-- | src/common/tortls.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tortls.h b/src/common/tortls.h index 3a517c25de..3ab252d8b3 100644 --- a/src/common/tortls.h +++ b/src/common/tortls.h @@ -26,6 +26,6 @@ int tor_tls_read(tor_tls *tls, char *cp, int len); int tor_tls_write(tor_tls *tls, char *cp, int n); int tor_tls_handshake(tor_tls *tls); int tor_tls_shutdown(tor_tls *tls); -int tor_tls_get_pending_bytees(tor_tls *tls); +int tor_tls_get_pending_bytes(tor_tls *tls); #endif |