svn commit: r190658 - head/lib/libc/rpc

Xin LI delphij at FreeBSD.org
Thu Apr 2 14:51:55 PDT 2009


Author: delphij
Date: Thu Apr  2 21:51:54 2009
New Revision: 190658
URL: http://svn.freebsd.org/changeset/base/190658

Log:
  Remove a warning which is supposed to have been removed on 20030301.

Modified:
  head/lib/libc/rpc/getnetconfig.c

Modified: head/lib/libc/rpc/getnetconfig.c
==============================================================================
--- head/lib/libc/rpc/getnetconfig.c	Thu Apr  2 21:44:55 2009	(r190657)
+++ head/lib/libc/rpc/getnetconfig.c	Thu Apr  2 21:51:54 2009	(r190658)
@@ -418,18 +418,6 @@ getnetconfigent(netid)
 	return (NULL);
     }
 
-    if (strcmp(netid, "unix") == 0) {
-	fprintf(stderr, "The local transport is called \"unix\" ");
-	fprintf(stderr, "in /etc/netconfig.\n");
-	fprintf(stderr, "Please change this to \"local\" manually ");
-	fprintf(stderr, "or run mergemaster(8).\n");
-	fprintf(stderr, "See UPDATING entry 20021216 for details.\n");
-	fprintf(stderr, "Continuing in 10 seconds\n\n");
-	fprintf(stderr, "This warning will be removed 20030301\n");
-	sleep(10);
-
-    }
-
     /*
      * Look up table if the entries have already been read and parsed in
      * getnetconfig(), then copy this entry into a buffer and return it.


More information about the svn-src-all mailing list