Node address will be shown on nodelist lookup, if point address is not found
This commit is contained in:
parent
d72bcc266b
commit
45cc7cef19
@ -10,6 +10,8 @@ ______________________________________________________________________
|
|||||||
Notes for GoldED+ 1.1.5, /snapshot/
|
Notes for GoldED+ 1.1.5, /snapshot/
|
||||||
______________________________________________________________________
|
______________________________________________________________________
|
||||||
|
|
||||||
|
+ Node address will be shown on nodelist lookup, if point address is not found.
|
||||||
|
|
||||||
+ ')' and '(' chars can be used for advanced search.
|
+ ')' and '(' chars can be used for advanced search.
|
||||||
')' - shortcut for "<>:" (from, to, subject), and
|
')' - shortcut for "<>:" (from, to, subject), and
|
||||||
'(' - for "#._*@%" (body, tagline, tearline, origin, signature, kludges)
|
'(' - for "#._*@%" (body, tagline, tearline, origin, signature, kludges)
|
||||||
|
@ -1005,7 +1005,7 @@ void Lookup(GMsg* msg, Addr* addr, char* name, int topline, char* status) {
|
|||||||
else
|
else
|
||||||
NLP->find(matchaddr);
|
NLP->find(matchaddr);
|
||||||
|
|
||||||
found = (NLP->found() && (exactmatch || topline == -100));
|
found = NLP->found() && exactmatch;
|
||||||
|
|
||||||
if (found && (topline != -100))
|
if (found && (topline != -100))
|
||||||
{
|
{
|
||||||
@ -1015,7 +1015,7 @@ void Lookup(GMsg* msg, Addr* addr, char* name, int topline, char* status) {
|
|||||||
found = false;
|
found = false;
|
||||||
NLP->pop_state();
|
NLP->pop_state();
|
||||||
}
|
}
|
||||||
else if (!found && matchaddr.point && (topline == -100))
|
else if (!found && matchaddr.point)
|
||||||
{
|
{
|
||||||
matchaddr.point = 0;
|
matchaddr.point = 0;
|
||||||
NLP->find(matchaddr);
|
NLP->find(matchaddr);
|
||||||
|
Reference in New Issue
Block a user