#define CONFIG_H
#define PACKAGE "dhcpcd"
-#define VERSION "5.99.4"
+#define VERSION "5.99.5"
#ifndef CONFIG
# define CONFIG SYSCONFDIR "/" PACKAGE ".conf"
# The smalled MTU dhcpcd can work with is 576
if [ "$new_interface_mtu" -ge 576 ]; then
if set_mtu "$new_interface_mtu"; then
- syslog info "$interface: MTU set to $new_interface_mtu"
+ syslog info "MTU set to $new_interface_mtu"
# Save the MTU so we can restore it later
if [ ! -e "$mtu_dir/$interface" ]; then
mkdir -p "$mtu_dir"
if $if_up || $if_down; then
# No MTU in this state, so restore the prior MTU
mtu=$(cat "$mtu_dir/$interface")
- syslog info "$interface: MTU restored to $mtu"
+ syslog info "MTU restored to $mtu"
set_mtu "$mtu"
rm "$mtu_dir/$interface"
fi
done
if [ -z "$zoneinfo_dir" ]; then
- syslog warning "$interface: timezone directory not found"
+ syslog warning "timezone directory not found"
return 1
fi
zone_file="$zoneinfo_dir/$new_tzdb_timezone"
if [ ! -e "$zone_file" ]; then
- syslog warning \
- "$interface: no timezone definition for $new_tzdb_timezone"
+ syslog warning "no timezone definition for $new_tzdb_timezone"
return 1
fi
- syslog info "$interface: timezone changed to $new_tzdb_timezone"
+ syslog info "timezone changed to $new_tzdb_timezone"
if [ -h "$localtime" ]; then
ln -sf "$zone_file" "$localtime"
else