diff options
author | dougm <dougm@13f79535-47bb-0310-9956-ffa450edef68> | 2001-02-13 23:32:41 +0000 |
---|---|---|
committer | dougm <dougm@13f79535-47bb-0310-9956-ffa450edef68> | 2001-02-13 23:32:41 +0000 |
commit | e9a59028ac36e5d290efba4191f1d55a50b07e68 (patch) | |
tree | ce244242e3fd6b06412a76922311484989eed470 /file_io/unix/readwrite.c | |
parent | 8d13970a912d8979ef73cb4d7ea8d9a63593053c (diff) | |
download | libapr-e9a59028ac36e5d290efba4191f1d55a50b07e68.tar.gz |
doh. need a spellchekker for these rename scripts. s/apr_lock_aquire/apr_lock_acquire/g;
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61232 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/unix/readwrite.c')
-rw-r--r-- | file_io/unix/readwrite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/file_io/unix/readwrite.c b/file_io/unix/readwrite.c index 84c5a7c48..c36858dc8 100644 --- a/file_io/unix/readwrite.c +++ b/file_io/unix/readwrite.c @@ -118,7 +118,7 @@ apr_status_t apr_file_read(apr_file_t *thefile, void *buf, apr_size_t *nbytes) apr_uint64_t size = *nbytes; #if APR_HAS_THREADS - apr_lock_aquire(thefile->thlock); + apr_lock_acquire(thefile->thlock); #endif if (thefile->direction == 1) { @@ -216,7 +216,7 @@ apr_status_t apr_file_write(apr_file_t *thefile, const void *buf, apr_size_t *nb int size = *nbytes; #if APR_HAS_THREADS - apr_lock_aquire(thefile->thlock); + apr_lock_acquire(thefile->thlock); #endif if ( thefile->direction == 0 ) { |