From: Nick Kew Date: Fri, 18 Aug 2006 12:38:28 +0000 (+0000) Subject: Log a message if we try to prepare a statement not attached to a hostname. X-Git-Tag: 2.3.0~2158 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5c94bb01409c1027defd353ed3f81eb1ecb48d75;p=apache 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 --- 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;