diff options
author | Jeroen Roovers <jer@gentoo.org> | 2010-02-08 12:46:04 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2010-02-08 12:46:04 +0000 |
commit | 377e65148ebd60e792c25b03fa4ccba55f9f5b8b (patch) | |
tree | 240a7aa1439d1d4af84e4503417aabd6510d41c2 | |
parent | Initial import of app-admin/syslog-summary. (diff) | |
download | gentoo-2-377e65148ebd60e792c25b03fa4ccba55f9f5b8b.tar.gz gentoo-2-377e65148ebd60e792c25b03fa4ccba55f9f5b8b.tar.bz2 gentoo-2-377e65148ebd60e792c25b03fa4ccba55f9f5b8b.zip |
Only patch the pgsql connection code, not the mysql stuff as well, thanks to Mike Nerone (bug #213788 again).
(Portage version: 2.2_rc62/cvs/Linux i686)
-rw-r--r-- | net-analyzer/flow-tools/ChangeLog | 4 | ||||
-rw-r--r-- | net-analyzer/flow-tools/files/flow-tools-0.68-db_tmp.patch | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/net-analyzer/flow-tools/ChangeLog b/net-analyzer/flow-tools/ChangeLog index 1e73bdab139b..6f29ecf06938 100644 --- a/net-analyzer/flow-tools/ChangeLog +++ b/net-analyzer/flow-tools/ChangeLog @@ -1,12 +1,12 @@ # ChangeLog for net-analyzer/flow-tools # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.38 2010/02/08 12:27:19 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/flow-tools/ChangeLog,v 1.39 2010/02/08 12:46:04 jer Exp $ *flow-tools-0.68-r7 (08 Feb 2010) 08 Feb 2010; Jeroen Roovers <jer@gentoo.org> -flow-tools-0.68-r6.ebuild, +flow-tools-0.68-r7.ebuild, files/flow-tools-0.68-db_tmp.patch: - Only patch the mysql connection code, not the pgsql stuff too thanks to + Only patch the pgsql connection code, not the mysql stuff as well, thanks to Mike Nerone (bug #213788 again). *flow-tools-0.68-r6 (26 May 2009) diff --git a/net-analyzer/flow-tools/files/flow-tools-0.68-db_tmp.patch b/net-analyzer/flow-tools/files/flow-tools-0.68-db_tmp.patch index a965418f2c7d..0b71ce5404fa 100644 --- a/net-analyzer/flow-tools/files/flow-tools-0.68-db_tmp.patch +++ b/net-analyzer/flow-tools/files/flow-tools-0.68-db_tmp.patch @@ -2,9 +2,9 @@ Patch by Rusnan R. Shaimardanov to fix bug #213788. --- flow-tools-0.68/src/flow-export.c.orig 2009-05-26 02:41:15.000000000 +0200 +++ flow-tools-0.68/src/flow-export.c 2009-05-26 02:54:56.000000000 +0200 -@@ -716,7 +716,7 @@ +@@ -892,7 +892,7 @@ + db_name = strsep(&tmp, ":"); db_table = strsep(&tmp, ":"); - db_port = atoi(db_tmp); - if (!db_user || !db_pwd || !db_host || !db_tmp || !db_name || !db_table) { + if (!db_user || !db_pwd || !db_host || !db_port || !db_name || !db_table) { |