From: Automatic source maintenance Date: Tue, 13 Jul 2010 00:12:55 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_2_0_1~69 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=68d5779373f903ce7096c035bd0cdfb968d5141b;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/helpers/digest_auth/file/digest_file_auth.cc b/helpers/digest_auth/file/digest_file_auth.cc index 47ea1e30c5..7ea933228a 100644 --- a/helpers/digest_auth/file/digest_file_auth.cc +++ b/helpers/digest_auth/file/digest_file_auth.cc @@ -4,7 +4,7 @@ * AUTHOR: Robert Collins. * * Based on ncsa_auth.c by Arjan de Vet - * + * * LDAP backend extension by Flavio Pescuma, * MARA Systems AB * diff --git a/helpers/external_acl/file_userip/ext_file_userip_acl.cc b/helpers/external_acl/file_userip/ext_file_userip_acl.cc index 01086273e0..8bee48c503 100644 --- a/helpers/external_acl/file_userip/ext_file_userip_acl.cc +++ b/helpers/external_acl/file_userip/ext_file_userip_acl.cc @@ -70,8 +70,7 @@ int dict_lookup(struct ip_user_dict *, char *, char *); * It returns a pointer to the first entry of the linked list */ struct ip_user_dict * -load_dict(FILE * FH) -{ +load_dict(FILE * FH) { struct ip_user_dict *current_entry; /* the structure used to store data */ struct ip_user_dict *first_entry = NULL; /* the head of the @@ -145,8 +144,8 @@ dict_lookup(struct ip_user_dict *first_entry, char *username, while (current_entry->username != NULL) { debug("user: %s\naddr: %lu\nmask: %lu\n\n", - current_entry->username, current_entry->address, - current_entry->netmask); + current_entry->username, current_entry->address, + current_entry->netmask); if ((inet_addr (address) & (unsigned long) current_entry-> netmask) == current_entry->address) {