]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Sat, 26 Jan 2008 23:46:50 +0000 (23:46 +0000)
committerAutomatic Updater <source@isc.org>
Sat, 26 Jan 2008 23:46:50 +0000 (23:46 +0000)
lib/isc/unix/resource.c

index af09cde2f6884cb093eae1edbc6c440a6cdbcf6f..a644fda74a5f4600a6068b985463f91a3ef4cedc 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004, 2007  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004, 2007, 2008  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000, 2001  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: resource.c,v 1.14.128.2 2008/01/25 23:51:18 jinmei Exp $ */
+/* $Id: resource.c,v 1.14.128.3 2008/01/26 23:46:50 tbox Exp $ */
 
 #include <config.h>
 
@@ -40,13 +40,13 @@ resource2rlim(isc_resource_t resource, int *rlim_resource) {
                break;
        case isc_resource_cputime:
                *rlim_resource = RLIMIT_CPU;
-               break;          
+               break;
        case isc_resource_datasize:
                *rlim_resource = RLIMIT_DATA;
-               break;          
+               break;
        case isc_resource_filesize:
                *rlim_resource = RLIMIT_FSIZE;
-               break;          
+               break;
        case isc_resource_lockedmemory:
 #ifdef RLIMIT_MEMLOCK
                *rlim_resource = RLIMIT_MEMLOCK;
@@ -79,7 +79,7 @@ resource2rlim(isc_resource_t resource, int *rlim_resource) {
                *rlim_resource = RLIMIT_STACK;
                break;
        default:
-                /*
+               /*
                 * This test is not very robust if isc_resource_t
                 * changes, but generates a clear assertion message.
                 */