diff options
author | Jerry Gilliam <Jerry.Gilliam@Sun.COM> | 2009-09-21 18:02:54 -0700 |
---|---|---|
committer | Jerry Gilliam <Jerry.Gilliam@Sun.COM> | 2009-09-21 18:02:54 -0700 |
commit | 3c0ea289563240a5a5dd86c9d791683620043745 (patch) | |
tree | a64719f04f9d4c26ebf7b293834275add14a0a93 /usr/src/cmd/modload/errmsg.h | |
parent | ba7b222e36bac28710a7f43739283302b617e7f5 (diff) | |
download | illumos-joyent-3c0ea289563240a5a5dd86c9d791683620043745.tar.gz |
6826304 modload: sscanf unbounded copies should be constrained
6827539 pattern quote preprocessing fix in 6612207 too aggressive
6837756 SUNWdcopy postinstall script problem results in broken /etc/driver_aliases
6844097 Possible security issue w/add_drv et al using /tmp for lock files
6877673 add_drv fails with a permissions entry with a minor name including a comma
Diffstat (limited to 'usr/src/cmd/modload/errmsg.h')
-rw-r--r-- | usr/src/cmd/modload/errmsg.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr/src/cmd/modload/errmsg.h b/usr/src/cmd/modload/errmsg.h index dc51b783f0..7905053795 100644 --- a/usr/src/cmd/modload/errmsg.h +++ b/usr/src/cmd/modload/errmsg.h @@ -100,8 +100,10 @@ extern "C" { "larger\nthan the maximum allowed value %u.\n" #define ERR_CREAT_LOCK "Failed to create lock file(%s): %s\n" +#define ERR_STAT_LOCK "Failed to stat lock file(%s): %s\n" #define ERR_LOCK "Failed to lock the lock file(%s): %s\n" #define ERR_UNLOCK "Failed to unlock the lock file(%s): %s\n" +#define ERR_OWNER_LOCK "Lock file(%s) not owned by user\n" #define ERR_LOCATION \ "Warning: %s-bit version of driver found at %s.\n" |