Commit 81c71044 authored by Nick Kew's avatar Nick Kew
Browse files

Add const-ness to apr_dbd_driver_t


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@231464 13f79535-47bb-0310-9956-ffa450edef68
parent 00eb8b79
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -71,7 +71,7 @@ typedef enum { cmd_name, cmd_params, cmd_persist,
static const char *dbd_param(cmd_parms *cmd, void *cfg, const char *val)
{
    const char *p;
    apr_dbd_driver_t *driver = NULL;
    const apr_dbd_driver_t *driver = NULL;
    svr_cfg *svr = (svr_cfg*) ap_get_module_config
        (cmd->server->module_config, &dbd_module);

+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@

typedef struct {
    apr_dbd_t *handle;
    apr_dbd_driver_t *driver;
    const apr_dbd_driver_t *driver;
    apr_hash_t *prepared;
} ap_dbd_t;