[BACK]Return to bgplg.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / bgplg

Diff for /src/usr.bin/bgplg/bgplg.c between version 1.12 and 1.13

version 1.12, 2013/11/25 18:02:50 version 1.13, 2015/01/16 06:40:06
Line 16 
Line 16 
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.   * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */   */
   
 #include <sys/stat.h>  
 #include <sys/types.h>  #include <sys/types.h>
 #include <sys/param.h>  #include <sys/stat.h>
   
 #include <stdio.h>  #include <stdio.h>
 #include <stdlib.h>  #include <stdlib.h>
 #include <signal.h>  #include <signal.h>
 #include <string.h>  #include <string.h>
 #include <unistd.h>  #include <unistd.h>
   #include <limits.h>
 #include <ctype.h>  #include <ctype.h>
 #include <errno.h>  #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
Line 247 
Line 247 
 {  {
         char *query, *self, *cmd = NULL, *req;          char *query, *self, *cmd = NULL, *req;
         char **argv = NULL;          char **argv = NULL;
         char myname[MAXHOSTNAMELEN];          char myname[HOST_NAME_MAX+1];
         int ret = 1, argc = 0, query_length = 0;          int ret = 1, argc = 0, query_length = 0;
         struct stat st;          struct stat st;
         u_int i;          u_int i;

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13