brian 96/09/27 19:35:55
Modified: src http_protocol.c Log: Fixed another -Wall warning. Revision Changes Path 1.49 +2 -2 apache/src/http_protocol.c Index: http_protocol.c =================================================================== RCS file: /export/home/cvs/apache/src/http_protocol.c,v retrieving revision 1.48 retrieving revision 1.49 diff -C3 -r1.48 -r1.49 *** http_protocol.c 1996/09/28 02:01:02 1.48 --- http_protocol.c 1996/09/28 02:35:53 1.49 *************** *** 50,56 **** * */ ! /* $Id: http_protocol.c,v 1.48 1996/09/28 02:01:02 brian Exp $ */ /* * http_protocol.c --- routines which directly communicate with the --- 50,56 ---- * */ ! /* $Id: http_protocol.c,v 1.49 1996/09/28 02:35:53 brian Exp $ */ /* * http_protocol.c --- routines which directly communicate with the *************** *** 1369,1375 **** case MULTIPLE_CHOICES: { char *list; ! if (list = table_get (r->notes, "variant-list")) bputs(list, fd); } break; --- 1369,1375 ---- case MULTIPLE_CHOICES: { char *list; ! if ((list = table_get (r->notes, "variant-list"))) bputs(list, fd); } break;