~ubuntu-branches/ubuntu/lucid/inspircd/lucid-security

« back to all changes in this revision

Viewing changes to src/modules/extra/m_sqlv2.h

  • Committer: Bazaar Package Importer
  • Author(s): Bradley Smith
  • Date: 2008-12-15 20:23:01 UTC
  • mfrom: (3.1.3 sid)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20081215202301-headkk1nadqum8g9
01_fix_config_reload.dpatch - Fix crash on config reload.

Show diffs side-by-side

added added

removed removed

Lines of Context:
464
464
 */
465
465
bool operator== (const SQLhost& l, const SQLhost& r)
466
466
{
467
 
        return (l.id == r.id && l.host == r.host && l.port == r.port && l.name == r.name && l.user == l.user && l.pass == r.pass && l.ssl == r.ssl);
 
467
        return (l.id == r.id && l.host == r.host && l.port == r.port && l.name == r.name && l.user == r.user && l.pass == r.pass && l.ssl == r.ssl);
468
468
}
469
469
 
470
470