]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Wed, 23 Jun 2010 23:45:31 +0000 (23:45 +0000)
committerAutomatic Updater <source@isc.org>
Wed, 23 Jun 2010 23:45:31 +0000 (23:45 +0000)
lib/dns/resolver.c

index f84eede9084abcbe168ea01d613f5a1bdc6826fa..789483b4fd9e46944e286497d025c094c70e4acd 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: resolver.c,v 1.355.12.55 2010/06/23 01:50:23 marka Exp $ */
+/* $Id: resolver.c,v 1.355.12.56 2010/06/23 23:45:31 tbox Exp $ */
 
 /*! \file */
 
@@ -5767,22 +5767,22 @@ fctx_decreference(fetchctx_t *fctx) {
        INSIST(fctx->references > 0);
        fctx->references--;
        if (fctx->references == 0) {
-                /*
-                 * No one cares about the result of this fetch anymore.
-                 */
-                if (fctx->pending == 0 && fctx->nqueries == 0 &&
-                    ISC_LIST_EMPTY(fctx->validators) && SHUTTINGDOWN(fctx)) {
-                        /*
-                         * This fctx is already shutdown; we were just
-                         * waiting for the last reference to go away.
-                         */
-                        bucket_empty = fctx_destroy(fctx);
-                } else {
-                        /*
-                         * Initiate shutdown.
-                         */
-                        fctx_shutdown(fctx);
-                }
+               /*
+                * No one cares about the result of this fetch anymore.
+                */
+               if (fctx->pending == 0 && fctx->nqueries == 0 &&
+                   ISC_LIST_EMPTY(fctx->validators) && SHUTTINGDOWN(fctx)) {
+                       /*
+                        * This fctx is already shutdown; we were just
+                        * waiting for the last reference to go away.
+                        */
+                       bucket_empty = fctx_destroy(fctx);
+               } else {
+                       /*
+                        * Initiate shutdown.
+                        */
+                       fctx_shutdown(fctx);
+               }
        }
        return (bucket_empty);
 }