From aad8f1473991fd684c95fbee47ce01a4bccd5997 Mon Sep 17 00:00:00 2001 From: James Cox Date: Sun, 18 Aug 2002 05:05:44 +0000 Subject: [PATCH] reverting to 1.73 for steph (sfox@php.net) #is it just me or reverting using cvs just suck? --- ext/db/db.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ext/db/db.c b/ext/db/db.c index e181c7da7d..fc9ec2d23c 100644 --- a/ext/db/db.c +++ b/ext/db/db.c @@ -38,11 +38,15 @@ #include #endif +#ifdef PHP_31 +#include "os/nt/flock.h" +#else #ifdef PHP_WIN32 #include "win32/flock.h" #else #include #endif +#endif #if HAVE_FCNTL_H #include @@ -626,12 +630,7 @@ char *php_dbm_fetch(dbm_info *info, char *key TSRMLS_DC) DBM_TYPE dbf; key_datum.dptr = key; -#ifdef PHP_WIN32 - key_datum.dsize = strlen(key+1); -#else key_datum.dsize = strlen(key); -#endif - #if GDBM_FIX key_datum.dsize++; #endif -- 2.40.0