# 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.1178 -> 1.1179 # net/ipv4/ipvs/ip_vs_ctl.c 1.2 -> 1.3 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/11/03 wensong@xxxxxxxxxxxx 1.1179 # [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 21:57:44 2003 +++ b/net/ipv4/ipvs/ip_vs_ctl.c Mon Nov 3 21:57:44 2003 @@ -1740,9 +1740,9 @@ * Check for valid protocol: TCP or UDP. Even for fwmark!=0 */ if (urule->protocol!=IPPROTO_TCP && urule->protocol!=IPPROTO_UDP) { - IP_VS_INFO("vs_ctl: invalid protocol: %d %d.%d.%d.%d:%d %s", - ntohs(urule->protocol), NIPQUAD(urule->vaddr), - ntohs(urule->vport), urule->sched_name); + IP_VS_ERR("set_ctl: invalid protocol %d %d.%d.%d.%d:%d %s\n", + ntohs(urule->protocol), NIPQUAD(urule->vaddr), + ntohs(urule->vport), urule->sched_name); ret = -EFAULT; goto out_unlock; }