diff options
| author | Eric S. Raymond <esr@thyrsus.com> | 1998-04-14 22:11:42 +0000 | 
|---|---|---|
| committer | Eric S. Raymond <esr@thyrsus.com> | 1998-04-14 22:11:42 +0000 | 
| commit | 238be5fcbe69551a287af757522595a3f9642317 (patch) | |
| tree | 4063b77f22bf3fc490aee3d11fb56937a0e62e90 /fetchmail.c | |
| parent | e28b5c24dd820c6b31878e3aa88f3cc433bc443a (diff) | |
| download | fetchmail-238be5fcbe69551a287af757522595a3f9642317.tar.gz fetchmail-238be5fcbe69551a287af757522595a3f9642317.tar.bz2 fetchmail-238be5fcbe69551a287af757522595a3f9642317.zip | |
Eliminate caseblinding of UID comparisons.
svn path=/trunk/; revision=1736
Diffstat (limited to 'fetchmail.c')
| -rw-r--r-- | fetchmail.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/fetchmail.c b/fetchmail.c index b968d21c..f108f7e8 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -503,7 +503,7 @@ int main (int argc, char **argv)  			 * Note:  this delay is important - don't remove!  			 */  			sleep(3); -			interface_note_activity(&ctl->server); +			interface_note_dactivity(&ctl->server);  		    }  #endif /* defined(linux) && !INET6 */  	    } @@ -688,7 +688,7 @@ static int load_params(int argc, char **argv, int optind)  	     */  	    for (ctl = querylist; ctl; ctl = ctl->next)  		if (!strcmp(ctl->server.pollname, argv[optind]) -			|| str_in_list(&ctl->server.akalist, argv[optind])) +			|| str_in_list(&ctl->server.akalist, argv[optind], TRUE))  		    goto foundit;  	    /* | 
