Date: Thu, 2 Apr 2009 21:51:54 +0000 (UTC) From: Xin LI <delphij@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r190658 - head/lib/libc/rpc Message-ID: <200904022151.n32LpsIC077034@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904022151.n32LpsIC077034>