[Dbconfig-common-changes] [dbconfig-common] r288 - branches/sqlite/internal

Matt Brown mattb-guest at costa.debian.org
Wed Aug 9 13:37:08 CEST 2006


Author: mattb-guest
Date: 2006-08-09 11:37:06 +0000 (Wed, 09 Aug 2006)
New Revision: 288

Modified:
   branches/sqlite/internal/sqlite
Log:
Fix a minor typo that caused _dbc_sqlite_check_database to always return
false!


Modified: branches/sqlite/internal/sqlite
===================================================================
--- branches/sqlite/internal/sqlite	2006-08-05 20:27:45 UTC (rev 287)
+++ branches/sqlite/internal/sqlite	2006-08-09 11:37:06 UTC (rev 288)
@@ -54,7 +54,7 @@
 	local dbc_dbname l_dbfile
 	dbc_dbname=$1
 	l_dbfile="${dbc_basepath}/${dbc_dbname}"
-	if test -f "$dbfile"; then
+	if test -f "$l_dbfile"; then
 		return 0
 	else
 		return 1




More information about the Dbconfig-common-changes mailing list