about summary refs log tree commit diff
path: root/sunrpc/tst-svc_register.c
Commit message (Collapse)AuthorAgeFilesLines
* sunrpc: Do not unregister services if not registered [BZ #5010]Florian Weimer2017-02-281-0/+299
The change in commit 718946816cf60374f9d8f674d3ed649fdb33205a has no effect because of two bugs which cancel each other out: The svc_is_mapped condition is inverted, and svc_is_mapped always returns false because the check is performed after the service has already been unregistered. As a result, pmap_unset is called unconditionally, as before.