# This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.1403 -> 1.1404 # net/ipv4/ipvs/ip_vs_ctl.c 1.11 -> 1.12 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/11/03 wensong@xxxxxxxxxxxx 1.1404 # [IPVS] Cosmetic IP_VS_INFO fix to add the trailing '\n' # # Patch from Horms # -------------------------------------------- # diff -Nru a/net/ipv4/ipvs/ip_vs_ctl.c b/net/ipv4/ipvs/ip_vs_ctl.c --- a/net/ipv4/ipvs/ip_vs_ctl.c Mon Nov 3 22:10:32 2003 +++ b/net/ipv4/ipvs/ip_vs_ctl.c Mon Nov 3 22:10:32 2003 @@ -1839,9 +1839,9 @@ /* Check for valid protocol: TCP or UDP, even for fwmark!=0 */ if (usvc->protocol!=IPPROTO_TCP && usvc->protocol!=IPPROTO_UDP) { - IP_VS_INFO("vs_ctl: invalid protocol: %d %d.%d.%d.%d:%d %s", - ntohs(usvc->protocol), NIPQUAD(usvc->addr), - ntohs(usvc->port), usvc->sched_name); + IP_VS_ERR("set_ctl: invalid protocol %d %d.%d.%d.%d:%d %s\n", + ntohs(usvc->protocol), NIPQUAD(usvc->addr), + ntohs(usvc->port), usvc->sched_name); ret = -EFAULT; goto out_unlock; }