projects
/
claws.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fix obvious mistake, thanks Michael (bug #3215)
[claws.git]
/
src
/
addr_compl.c
diff --git
a/src/addr_compl.c
b/src/addr_compl.c
index 21348ab4fa72881047fc5b077bf88343eb11f452..c6a1795054fa729a1f0044a774ce17fa4d848bed 100644
(file)
--- a/
src/addr_compl.c
+++ b/
src/addr_compl.c
@@
-205,7
+205,7
@@
static gint weight_addr_match(const address_entry* addr)
else
a_weight = match - addr->address;
- if (strlen(match)
<
strlen(g_completion_prefix)
+ if (strlen(match)
>
strlen(g_completion_prefix)
&& *(match + strlen(g_completion_prefix)) == '@')
a_weight--;
}