Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/dhcp/dhcp.c

    rc1694b6b rdc0d6e5d  
    3939#include <byteorder.h>
    4040#include <errno.h>
    41 #include <str_error.h>
    4241#include <fibril_synch.h>
    4342#include <inet/addr.h>
     
    371370        if (rc != EOK) {
    372371                log_msg(LOG_DEFAULT, LVL_ERROR,
    373                     "Error creating IP address %s: %s", "dhcp4a", str_error(rc));
     372                    "Error creating IP address %s (%d)", "dhcp4a", rc);
    374373                return rc;
    375374        }
     
    381380                if (rc != EOK) {
    382381                        log_msg(LOG_DEFAULT, LVL_ERROR, "Error creating "
    383                             "default route %s: %s.", "dhcpdef", str_error(rc));
     382                            "default route %s (%d).", "dhcpdef", rc);
    384383                        return rc;
    385384                }
     
    390389                if (rc != EOK) {
    391390                        log_msg(LOG_DEFAULT, LVL_ERROR, "Error setting "
    392                             "nameserver address: %s)", str_error(rc));
     391                            "nameserver address (%d))", rc);
    393392                        return rc;
    394393                }
Note: See TracChangeset for help on using the changeset viewer.