=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/netstat/main.c,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- src/usr.bin/netstat/main.c 1997/01/15 23:42:55 1.6 +++ src/usr.bin/netstat/main.c 1997/02/01 17:31:19 1.7 @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.6 1997/01/15 23:42:55 millert Exp $ */ +/* $OpenBSD: main.c,v 1.7 1997/02/01 17:31:19 kstailey Exp $ */ /* $NetBSD: main.c,v 1.9 1996/05/07 02:55:02 thorpej Exp $ */ /* @@ -44,7 +44,7 @@ #if 0 static char sccsid[] = "from: @(#)main.c 8.4 (Berkeley) 3/1/94"; #else -static char *rcsid = "$OpenBSD: main.c,v 1.6 1997/01/15 23:42:55 millert Exp $"; +static char *rcsid = "$OpenBSD: main.c,v 1.7 1997/02/01 17:31:19 kstailey Exp $"; #endif #endif /* not lint */ @@ -240,6 +240,8 @@ case 'f': if (strcmp(optarg, "inet") == 0) af = AF_INET; + else if (strcmp(optarg, "local") == 0) + af = AF_LOCAL; else if (strcmp(optarg, "unix") == 0) af = AF_UNIX; else if (strcmp(optarg, "ipx") == 0)