Fixed uninitialized variable
This warning was accidentally introduced by commit b7936d5c2337bc976ac831c1c38de563844c36b. The fix is to simply initialize the variable to ZFS_DELEG_WHO_UNKNOWN. cmd/zfs/zfs_main.c:4460:25: warning: 'who_type' may be used uninitialized in this function Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
parent
29b35200a7
commit
4c069d3494
|
@ -4457,7 +4457,7 @@ construct_fsacl_list(boolean_t un, struct allow_opts *opts, nvlist_t **nvlp)
|
|||
|
||||
while (curr < end) {
|
||||
const char *who;
|
||||
zfs_deleg_who_type_t who_type;
|
||||
zfs_deleg_who_type_t who_type = ZFS_DELEG_WHO_UNKNOWN;
|
||||
char *endch;
|
||||
char *delim = strchr(curr, ',');
|
||||
char errbuf[256];
|
||||
|
|
Loading…
Reference in New Issue