| 876 | } |
| 877 | |
| 878 | static struct afswtch * |
| 879 | af_getbyfamily(int af) |
| 880 | { |
| 881 | struct afswtch *afp; |
| 882 | |
| 883 | for (afp = afs; afp != NULL; afp = afp->af_next) |
| 884 | if (afp->af_af == af) |
| 885 | return afp; |
| 886 | return NULL; |
| 887 | } |
| 888 | |
| 889 | static void |
| 890 | af_other_status(int s) |