From: tomponline Date: Fri, 26 Apr 2019 16:49:32 +0000 (+0100) Subject: network: Fixes a little typo in an error message X-Git-Tag: lxc-3.2.0~91^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eb0628a701a32b03fdfa6aebb7b8cac1903dac7d;p=thirdparty%2Flxc.git network: Fixes a little typo in an error message Signed-off-by: tomponline --- diff --git a/src/lxc/network.c b/src/lxc/network.c index d1b4d43ad..336805d1a 100644 --- a/src/lxc/network.c +++ b/src/lxc/network.c @@ -2974,7 +2974,7 @@ static int lxc_setup_netdev_in_child_namespaces(struct lxc_netdev *netdev) if (netdev->ipv4_gateway_auto) { char buf[INET_ADDRSTRLEN]; inet_ntop(AF_INET, netdev->ipv4_gateway, buf, sizeof(buf)); - ERROR("Fried to set autodetected ipv4 gateway \"%s\"", buf); + ERROR("Tried to set autodetected ipv4 gateway \"%s\"", buf); } return -1; }