diff options
Diffstat (limited to 'usr/src/cmd/modload/add_drv.c')
-rw-r--r-- | usr/src/cmd/modload/add_drv.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/usr/src/cmd/modload/add_drv.c b/usr/src/cmd/modload/add_drv.c index d40eec2902..62da6d8796 100644 --- a/usr/src/cmd/modload/add_drv.c +++ b/usr/src/cmd/modload/add_drv.c @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -20,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2005 Sun Microsystems, Inc. All rights reserved. + * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -525,7 +524,7 @@ update_driver_classes( { /* make call to update the classes file */ return (append_to_file(driver_name, classes, driver_classes, - ' ', "\t")); + ' ', "\t", 0)); } static int @@ -533,7 +532,8 @@ update_minor_perm( char *driver_name, char *perm_list) { - return (append_to_file(driver_name, perm_list, minor_perm, ',', ":")); + return (append_to_file(driver_name, perm_list, minor_perm, + ',', ":", 0)); } @@ -567,7 +567,8 @@ update_extra_privs( char *driver_name, char *privlist) { - return (append_to_file(driver_name, privlist, extra_privs, ',', ":")); + return (append_to_file(driver_name, privlist, extra_privs, + ',', ":", 0)); } /* |