http://defect.opensolaris.org/bz/show_bug.cgi?id=10453


amaguire <alan.maguire at sun.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |alan.maguire at sun.com
             Status|NEW                         |CAUSEKNOWN




--- Comment #1 from amaguire <alan.maguire at sun.com>  2009-08-05 08:51:35 ---
the reason this happens is because the active_ncp property is now used to
determine the active NCP.

The reason the failure isn't silent is because we ignore ENTITY_IN_USE errors
in nwamcfg:

int
destroy_ncp_callback(nwam_ncp_handle_t ncp, void *arg)
{
        nwam_error_t ret;

        /* The file is deleted, so NCUs are also removed */
        ret = nwam_ncp_destroy(ncp, NWAM_FLAG_DO_NOT_FREE);
        switch (ret) {
        case NWAM_SUCCESS:
>>>        case NWAM_ENTITY_NOT_DESTROYABLE: <<<<
        case NWAM_ENTITY_IN_USE:
                return (0);
        default:
                return (1);
        }
}

-- 
Configure bugmail: http://defect.opensolaris.org/bz/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.

Reply via email to