diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-23 15:47:08 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-23 15:47:08 +0000 |
commit | 69790e320dcc16845a30e10a5a53ee63b26853fd (patch) | |
tree | ee1a7d2a1db6711b201b2d31b59387324178b6cc /src/modules/extra/m_pgsql.cpp | |
parent | cdfeb4f406777632db5ddc09c90642383639a012 (diff) |
Change to use GetId() and ID rather than GetData() and data
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4531 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra/m_pgsql.cpp')
-rw-r--r-- | src/modules/extra/m_pgsql.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/extra/m_pgsql.cpp b/src/modules/extra/m_pgsql.cpp index ec44f2970..307be5d60 100644 --- a/src/modules/extra/m_pgsql.cpp +++ b/src/modules/extra/m_pgsql.cpp @@ -517,7 +517,7 @@ public: virtual char* OnRequest(Request* request) { - if(strcmp(SQLREQID, request->GetData()) == 0) + if(strcmp(SQLREQID, request->GetId()) == 0) { SQLrequest* req = (SQLrequest*)request; ConnMap::iterator iter; @@ -539,7 +539,7 @@ public: } } - log(DEBUG, "Got unsupported API version string: %s", request->GetData()); + log(DEBUG, "Got unsupported API version string: %s", request->GetId()); return NULL; } |