From 5c94bb01409c1027defd353ed3f81eb1ecb48d75 Mon Sep 17 00:00:00 2001 From: Nick Kew Date: Fri, 18 Aug 2006 12:38:28 +0000 Subject: [PATCH] Log a message if we try to prepare a statement not attached to a hostname. This fix supplements r432560 (don't crash). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@432562 13f79535-47bb-0310-9956-ffa450edef68 --- modules/database/mod_dbd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/database/mod_dbd.c b/modules/database/mod_dbd.c index 76eeca2b4c..af404d494e 100644 --- a/modules/database/mod_dbd.c +++ b/modules/database/mod_dbd.c @@ -151,6 +151,8 @@ DBD_DECLARE_NONSTD(void) ap_dbd_prepare(server_rec *s, const char *query, const char *key = s->server_hostname; if (key == NULL) { key = default_hostname; + ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, + "DBD: ServerName should be set before declaring any prepared statements"); } prepared->label = label; prepared->query = query; -- 2.40.0