|
Description
|
[ahl 7.4.2007]
/*
* Log command history.
*
* 'pool' is B_TRUE if we are logging a command for 'zpool'; B_FALSE
* otherwise ('zfs'). 'pool_create' is B_TRUE if we are logging the creation
* of the pool; B_FALSE otherwise. 'path' is the pathname containing the
* poolname. 'argc' and 'argv' are used to construct the command string.
*/
void
zpool_stage_history(libzfs_handle_t *hdl, int argc, char **argv,
boolean_t zfs_cmd, boolean_t pool_create)
{
'path'? Looking at the old version sheds some light:
void
zpool_log_history(libzfs_handle_t *hdl, int argc, char **argv, const char *path,
boolean_t pool, boolean_t pool_create)
Comments really need to stay in sync with implementation...
|