]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceFormat Enforcement
authorAutomatic source maintenance <squidadm@squid-cache.org>
Tue, 13 Jul 2010 00:12:55 +0000 (18:12 -0600)
committerAutomatic source maintenance <squidadm@squid-cache.org>
Tue, 13 Jul 2010 00:12:55 +0000 (18:12 -0600)
helpers/digest_auth/file/digest_file_auth.cc
helpers/external_acl/file_userip/ext_file_userip_acl.cc

index 47ea1e30c5c1b6b56dee3816efa7dd5995a586cd..7ea933228a6bf8b4f8c15d37425f6096052e50dd 100644 (file)
@@ -4,7 +4,7 @@
  * AUTHOR: Robert Collins.
  *
  * Based on ncsa_auth.c by Arjan de Vet <Arjan.deVet@adv.iae.nl>
- * 
+ *
  * LDAP backend extension by Flavio Pescuma,
  * MARA Systems AB <flavio@marasystems.com>
  *
index 01086273e080c5501a709cb9e4ef846ce33e0c3a..8bee48c50364172ccd329a8f048030b7d6d96292 100644 (file)
@@ -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) {