summaryrefslogtreecommitdiff
path: root/usr/src/cmd/modload/add_drv.c
diff options
context:
space:
mode:
authorcth <none@none>2007-05-01 05:33:55 -0700
committercth <none@none>2007-05-01 05:33:55 -0700
commitf4da9be01648d6afa604495d9b9956dddeb92a8c (patch)
treee3730f62fe03f317264d5c836fe4e6710acc729f /usr/src/cmd/modload/add_drv.c
parent75c7619736838143dd41b3c5c9d7adec4683488f (diff)
downloadillumos-joyent-f4da9be01648d6afa604495d9b9956dddeb92a8c.tar.gz
PSARC 2007/176 path-oriented driver alias
6536151 path-oriented driver alias
Diffstat (limited to 'usr/src/cmd/modload/add_drv.c')
-rw-r--r--usr/src/cmd/modload/add_drv.c15
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));
}
/*