Make address folder name case insensitive.

This commit is contained in:
Match Grun 2003-03-19 01:37:49 +00:00
parent f4b7d15089
commit 771c305abe
3 changed files with 6 additions and 2 deletions

View file

@ -1,3 +1,7 @@
2003-03-18 [match] 0.8.11claws28
* src/editgroup.h
remove case sensitive comparison (closes bug 80).
2003-03-18 [christoph] 0.8.11claws27
* src/imap.c

View file

@ -11,7 +11,7 @@ MINOR_VERSION=8
MICRO_VERSION=11
INTERFACE_AGE=0
BINARY_AGE=0
EXTRA_VERSION=claws27
EXTRA_VERSION=claws28
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION
dnl set $target

View file

@ -515,7 +515,7 @@ ItemFolder *addressbook_edit_folder( AddressBookFile *abf, ItemFolder *parent, I
return NULL;
}
if( folder ) {
if( strcasecmp( name, ADDRITEM_NAME(folder) ) == 0 ) {
if( strcmp( name, ADDRITEM_NAME(folder) ) == 0 ) {
g_free( name );
return NULL;
}