summaryrefslogtreecommitdiff
authorMichael Krelin <hacker@klever.net>2007-07-28 18:20:38 (UTC)
committer Michael Krelin <hacker@klever.net>2007-07-28 18:20:38 (UTC)
commit2046805030295f646052c635e525a4ae2ec787cc (patch) (unidiff)
treebd37e6580e722da2c3dba427d2b5d9641443b394
parent47820253bc995823e85a78b84a36156c4b3425f4 (diff)
downloadmisc-2046805030295f646052c635e525a4ae2ec787cc.zip
misc-2046805030295f646052c635e525a4ae2ec787cc.tar.gz
misc-2046805030295f646052c635e525a4ae2ec787cc.tar.bz2
net-im/jabberd: fixed patch
Signed-off-by: Michael Krelin <hacker@klever.net>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--net-im/jabberd/files/jabberd-2.1.11-r1.patch20
1 files changed, 18 insertions, 2 deletions
diff --git a/net-im/jabberd/files/jabberd-2.1.11-r1.patch b/net-im/jabberd/files/jabberd-2.1.11-r1.patch
index 441163c..6eba147 100644
--- a/net-im/jabberd/files/jabberd-2.1.11-r1.patch
+++ b/net-im/jabberd/files/jabberd-2.1.11-r1.patch
@@ -93,6 +93,22 @@ index 099aec9..29dca26 100644
93 fi 93 fi
94 AC_SUBST(PGSQL_CFLAGS) 94 AC_SUBST(PGSQL_CFLAGS)
95 AC_SUBST(PGSQL_LIBS) 95 AC_SUBST(PGSQL_LIBS)
96diff --git a/etc/c2s.xml.dist.in b/etc/c2s.xml.dist.in
97index 873a133..0589ada 100644
98--- a/etc/c2s.xml.dist.in
99+++ b/etc/c2s.xml.dist.in
100@@ -325,6 +325,11 @@
101
102 <!-- PostgreSQL module configuration -->
103 <pgsql>
104+ <!-- PostgreSQL connection info -->
105+ <conninfo>dbname=jabberd2 user=jabberd2 password=secret</conninfo>
106+
107+ <!-- The rest of connection settings are used only in absence of 'conninfo' -->
108+
109 <!-- Database server host and port -->
110 <host>localhost</host>
111 <port>5432</port>
96diff --git a/mio/mio_impl.h b/mio/mio_impl.h 112diff --git a/mio/mio_impl.h b/mio/mio_impl.h
97index 6f72a5c..cabdc67 100644 113index 6f72a5c..cabdc67 100644
98--- a/mio/mio_impl.h 114--- a/mio/mio_impl.h
@@ -160,7 +176,7 @@ index 06f9e6e..5abf065 100644
160 log_debug(ZONE, "jid item with value '%s'", jid_full(zitem->jid)); 176 log_debug(ZONE, "jid item with value '%s'", jid_full(zitem->jid));
161 177
162diff --git a/storage/authreg_pgsql.c b/storage/authreg_pgsql.c 178diff --git a/storage/authreg_pgsql.c b/storage/authreg_pgsql.c
163index 1f15e83..8d3cf88 100644 179index 1f15e83..cb68e7d 100644
164--- a/storage/authreg_pgsql.c 180--- a/storage/authreg_pgsql.c
165+++ b/storage/authreg_pgsql.c 181+++ b/storage/authreg_pgsql.c
166@@ -304,7 +304,7 @@ int _ar_pgsql_check_sql( authreg_t ar, char * sql, char * types ) { 182@@ -304,7 +304,7 @@ int _ar_pgsql_check_sql( authreg_t ar, char * sql, char * types ) {
@@ -185,9 +201,9 @@ index 1f15e83..8d3cf88 100644
185- log_debug( ZONE, "pgsql connecting as '%s' to database '%s' on %s:%s", user, dbname, host, port ); 201- log_debug( ZONE, "pgsql connecting as '%s' to database '%s' on %s:%s", user, dbname, host, port );
186+ conninfo = config_get_one(ar->c2s->config,"authreg.pgsql.conninfo",0); 202+ conninfo = config_get_one(ar->c2s->config,"authreg.pgsql.conninfo",0);
187+ if(conninfo) { 203+ if(conninfo) {
188 +conn = PQconnect(conninfo);
189 +/* don't log connection info for it can contain password */ 204 +/* don't log connection info for it can contain password */
190 +log_debug( ZONE, "pgsql connecting to the databse"); 205 +log_debug( ZONE, "pgsql connecting to the databse");
206 +conn = PQconnectdb(conninfo);
191+ }else{ 207+ }else{
192 +/* compatibility settings */ 208 +/* compatibility settings */
193 +host = config_get_one(ar->c2s->config, "authreg.pgsql.host", 0); 209 +host = config_get_one(ar->c2s->config, "authreg.pgsql.host", 0);