Skip to content
  • Thomas Haller's avatar
    dhcp: chain up parent stop() for NMDhcpSystem client · badace72
    Thomas Haller authored
    The parent's stop() implementation does nothing interesting
    for NMDhcpSystem. Still, call it, it's just unexpected to
    not chain up the parent implementation, if all other subclasses
    do it.
    
    In general, if the parent's implementation is not suitable to be called
    by the derived class, that should be handled differently then just not
    chaining up. Otherwise it's inconsistent and confusing.
    badace72