diff options
author | sobomax <sobomax@FreeBSD.org> | 2002-10-31 10:36:12 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2002-10-31 10:36:12 +0000 |
commit | e0948bce97292254070c1b24394e8c698f4408bd (patch) | |
tree | 03f269d9fe49843107db6a7f071343d8c04e0f7a /usr.bin/finger | |
parent | 13951321fabcc406ff26d2f5607bf2f77dbfd139 (diff) | |
download | FreeBSD-src-e0948bce97292254070c1b24394e8c698f4408bd.zip FreeBSD-src-e0948bce97292254070c1b24394e8c698f4408bd.tar.gz |
Fix POLA breakage in 1.29: IPv4 should be default. This makes `-4' option
a nop, but we'll probably want to keep it for compatibility with other
KAME-based systems.
Complained about by: Andrey Lakhno <land@dnepr.net>
MFC after: 3 days
Diffstat (limited to 'usr.bin/finger')
-rw-r--r-- | usr.bin/finger/finger.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/finger/finger.c b/usr.bin/finger/finger.c index 8aafdd5..0de467d 100644 --- a/usr.bin/finger/finger.c +++ b/usr.bin/finger/finger.c @@ -92,7 +92,7 @@ __FBSDID("$FreeBSD$"); DB *db; time_t now; int entries, gflag, lflag, mflag, pplan, sflag, oflag, Tflag; -sa_family_t family = PF_UNSPEC; +sa_family_t family = AF_INET; int d_first = -1; char tbuf[1024]; |