rbb 99/09/13 05:37:15
Modified: src/modules/mpm/dexter acceptlock.c
Log:
Fix a stupid typo that never should have been committed.
Submitted by: Jim Jagielski
Revision Changes Path
1.8 +2 -2 apache-2.0/src/modules/mpm/dexter/acceptlock.c
Index: acceptlock.c
===================================================================
RCS file: /home/cvs/apache-2.0/src/modules/mpm/dexter/acceptlock.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- acceptlock.c 1999/09/11 15:58:35 1.7
+++ acceptlock.c 1999/09/13 12:37:13 1.8
@@ -581,7 +581,7 @@
char *lock_fname = expand_lock_fname(p, i);
ap_open(p, lock_fname, APR_WRITE, APR_UREAD | APR_UWRITE, &tempfile);
- ap_get_os_file(tempfile, *lock_fd[i]);
+ ap_get_os_file(tempfile, &lock_fd[i]);
if (lock_fd[i] == -1) {
ap_log_error(APLOG_MARK, APLOG_EMERG,
(const server_rec *)ap_get_server_conf(),
@@ -608,7 +608,7 @@
lock_fname = expand_lock_fname(p, i);
unlink(lock_fname);
ap_open(p, lock_fname, APR_CREATE | APR_WRITE | APR_EXCL, APR_UREAD
| APR_UWRITE, &tempfile);
- ap_get_os_file(tempfile, *lock_fd[i]);
+ ap_get_os_file(tempfile, &lock_fd[i]);
if (lock_fd[i] == -1) {
ap_log_error(APLOG_MARK, APLOG_EMERG,
(const server_rec *) ap_get_server_conf(),