Update of /cvsroot/mahogany/M/src/adb
In directory usw-pr-cvs1:/tmp/cvs-serv16468/src/adb
Modified Files:
ProvPasswd.cpp
Log Message:
compilation fix after the recent changes
Index: ProvPasswd.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/adb/ProvPasswd.cpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -b -u -2 -r1.5 -r1.6
--- ProvPasswd.cpp 15 Feb 2002 21:29:11 -0000 1.5
+++ ProvPasswd.cpp 14 Apr 2002 11:51:33 -0000 1.6
@@ -89,5 +89,5 @@
virtual void ClearExtraEMails() { }
- virtual bool Matches(const char *str, int where, int how);
+ virtual int Matches(const char *str, int where, int how) const;
private:
@@ -274,5 +274,5 @@
}
-bool PasswdEntry::Matches(const char *what, int where, int how)
+int PasswdEntry::Matches(const char *what, int where, int how) const
{
// substring lookup looks for a part of the string, "starts with" means
@@ -299,5 +299,5 @@
strField.MakeLower(); \
if ( strField.Matches(strWhat) ) \
- return TRUE; \
+ return AdbLookup_##field; \
}
@@ -306,5 +306,5 @@
CHECK_MATCH(EMail);
- return false;
+ return 0;
}
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates