Skip to content
Snippets Groups Projects
Commit 4ce3fe75 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Bugfix.

Rev: lib/modules/Sql.pmod/sql.pike:1.14
parent 8426b77b
No related branches found
No related tags found
No related merge requests found
/* /*
* $Id: sql.pike,v 1.13 1997/06/27 18:40:37 grubba Exp $ * $Id: sql.pike,v 1.14 1997/07/02 00:27:27 grubba Exp $
* *
* Implements the generic parts of the SQL-interface * Implements the generic parts of the SQL-interface
* *
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
//. //.
//. File: sql.pike //. File: sql.pike
//. RCSID: $Id: sql.pike,v 1.13 1997/06/27 18:40:37 grubba Exp $ //. RCSID: $Id: sql.pike,v 1.14 1997/07/02 00:27:27 grubba Exp $
//. Author: Henrik Grubbstrm (grubba@infovav.se) //. Author: Henrik Grubbstrm (grubba@infovav.se)
//. //.
//. Synopsis: Implements the generic parts of the SQL-interface. //. Synopsis: Implements the generic parts of the SQL-interface.
...@@ -79,7 +79,7 @@ void create(void|string|object host, void|string db, ...@@ -79,7 +79,7 @@ void create(void|string|object host, void|string db,
array(string) program_names; array(string) program_names;
if (host != replace(host, ({ ":", "/", "@" }), ({ "", "", "" }))) { if (host && (host != replace(host, ({ ":", "/", "@" }), ({ "", "", "" })))) {
// The hostname is on the format: // The hostname is on the format:
// //
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment