s/0x7f000001/INADDR_LOOPBACK

This commit is contained in:
Alfred Perlstein 2001-03-16 13:10:26 +00:00
parent 538845ea72
commit e8f6dea18b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=74347

View File

@ -125,7 +125,7 @@ char **argv;
bzero(&sin, sizeof sin);
sin.sin_family = AF_INET;
sin.sin_addr.s_addr = htonl(0x7f000001);
sin.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
while( (c=getopt(argc, argv, "h:d:")) != -1)
switch(c) {