diff options
author | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 17:12:47 +0000 |
---|---|---|
committer | Adam Weinberger <adamw@FreeBSD.org> | 2014-07-29 17:12:47 +0000 |
commit | 08a006d08a4c35d2c3ecc9a3d10cf7fd14661a84 (patch) | |
tree | 0cfc4f0736babb895eb97a65c6defe632a0249c7 /databases/dbconnect/files/patch-src__dbconnect__dbconnect.cpp | |
parent | editors/fte: update to 20110708 (diff) |
Rename all patches that contain '::' as a path separator, and use
'__' instead.
Notes
Notes:
svn path=/head/; revision=363362
Diffstat (limited to 'databases/dbconnect/files/patch-src__dbconnect__dbconnect.cpp')
-rw-r--r-- | databases/dbconnect/files/patch-src__dbconnect__dbconnect.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/databases/dbconnect/files/patch-src__dbconnect__dbconnect.cpp b/databases/dbconnect/files/patch-src__dbconnect__dbconnect.cpp new file mode 100644 index 000000000000..82d955694ea5 --- /dev/null +++ b/databases/dbconnect/files/patch-src__dbconnect__dbconnect.cpp @@ -0,0 +1,24 @@ +--- src/dbconnect/dbconnect.cpp.orig Mon Aug 9 15:54:42 2004 ++++ src/dbconnect/dbconnect.cpp Mon Aug 9 15:56:41 2004 +@@ -117,7 +117,7 @@ + //------------------------------------------------------------------------------ + DbConnection::DbConnection( + Driver driver, +- const string &configFile) ++ const string &cfgFile) + : + ptr_getAuthor(NULL), + ptr_getVendor(NULL), +@@ -147,10 +147,10 @@ + + + // 1. Use the file iif given in configFile param. +- if (configFile.length() > 0) ++ if (cfgFile.length() > 0) + { + // Try and read the information from the config file. +- ConfigFile configFile(configFile.c_str()); ++ ConfigFile configFile(cfgFile.c_str()); + configFile.read(); + + if (configFile.hasKeyName("dbconnect", "driverPath")) |