Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.sbin/amd/amd Defaults to UDP mounts again. The move to T...



details:   https://anonhg.NetBSD.org/src/rev/cb9e4ac20059
branches:  trunk
changeset: 467862:cb9e4ac20059
user:      bouyer <bouyer%NetBSD.org@localhost>
date:      Tue Mar 30 08:23:26 1999 +0000

description:
Defaults to UDP mounts again. The move to TCP mounts by default was too
intrusive, even without bugs on the NetBSD side.

diffstat:

 usr.sbin/amd/amd/srvr_nfs.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r ea2493dee348 -r cb9e4ac20059 usr.sbin/amd/amd/srvr_nfs.c
--- a/usr.sbin/amd/amd/srvr_nfs.c       Tue Mar 30 08:21:54 1999 +0000
+++ b/usr.sbin/amd/amd/srvr_nfs.c       Tue Mar 30 08:23:26 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: srvr_nfs.c,v 1.10 1999/02/01 19:05:11 christos Exp $   */
+/*     $NetBSD: srvr_nfs.c,v 1.11 1999/03/30 08:23:26 bouyer Exp $     */
 
 /*
  * Copyright (c) 1997-1999 Erez Zadok
@@ -96,7 +96,7 @@
 
 #if defined(MNTTAB_OPT_PROTO) || defined(HAVE_FS_NFS3)
 /* protocols we know about, in order of preference */
-static char *protocols[] = { "tcp", "udp", NULL };
+static char *protocols[] = { "udp", "tcp", NULL };
 #endif /* defined(MNTTAB_OPT_PROTO) || defined(HAVE_FS_NFS3) */
 
 /* forward definitions */



Home | Main Index | Thread Index | Old Index