From: guenther Date: Sun, 10 Aug 2014 07:31:58 +0000 (+0000) Subject: AF_IMPLINK and AF_BLUETOOTH are gone, but add printing of SOCK_SEQPACKET X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c2ec52163b39b11edfb4e95e45e7b282f387dbe1;p=openbsd AF_IMPLINK and AF_BLUETOOTH are gone, but add printing of SOCK_SEQPACKET --- diff --git a/regress/lib/libc/asr/bin/common.c b/regress/lib/libc/asr/bin/common.c index 8f2f4515b3f..c808c86d618 100644 --- a/regress/lib/libc/asr/bin/common.c +++ b/regress/lib/libc/asr/bin/common.c @@ -1,4 +1,4 @@ -/* $OpenBSD: common.c,v 1.2 2013/03/28 09:36:03 eric Exp $ */ +/* $OpenBSD: common.c,v 1.3 2014/08/10 07:31:58 guenther Exp $ */ /* * Copyright (c) 2012 Eric Faurot * @@ -56,14 +56,13 @@ struct kv kv_family[] = { { AF_UNIX, "unix" }, { AF_INET, "inet" }, { AF_INET6, "inet6" }, - { AF_IMPLINK, "implink" }, - { AF_BLUETOOTH, "bluetooth" }, { 0, NULL, } }; struct kv kv_socktype[] = { - { SOCK_STREAM, "stream" }, - { SOCK_DGRAM, "dgram" }, - { SOCK_RAW, "raw" }, + { SOCK_STREAM, "stream" }, + { SOCK_DGRAM, "dgram" }, + { SOCK_RAW, "raw" }, + { SOCK_SEQPACKET, "seqpacket" }, { 0, NULL, } }; struct kv kv_protocol[] = {