You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Dean Gaudet <dg...@hyperreal.com> on 1997/06/29 21:05:21 UTC

cvs commit: apache/src http_config.c

dgaudet     97/06/29 12:05:21

  Modified:    src       http_config.c
  Log:
  Fix BindAddress, I broke it with the listeners change.
  
  Revision  Changes    Path
  1.54      +1 -1      apache/src/http_config.c
  
  Index: http_config.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_config.c,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -C3 -r1.53 -r1.54
  *** http_config.c	1997/06/28 23:57:55	1.53
  --- http_config.c	1997/06/29 19:05:20	1.54
  ***************
  *** 1087,1093 ****
        /* allocate a default listener */
        new = pcalloc(p, sizeof(listen_rec));
        new->local_addr.sin_family = AF_INET;
  !     new->local_addr.sin_addr.s_addr = htonl(INADDR_ANY);
        new->local_addr.sin_port = htons(s->port);
        new->fd = -1;
        new->used = 0;
  --- 1087,1093 ----
        /* allocate a default listener */
        new = pcalloc(p, sizeof(listen_rec));
        new->local_addr.sin_family = AF_INET;
  !     new->local_addr.sin_addr = bind_address;
        new->local_addr.sin_port = htons(s->port);
        new->fd = -1;
        new->used = 0;