From owner-cvs-usrbin Wed Jul 1 12:57:41 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA10577 for cvs-usrbin-outgoing; Wed, 1 Jul 1998 12:57:41 -0700 (PDT) (envelope-from owner-cvs-usrbin) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA10532; Wed, 1 Jul 1998 12:57:27 -0700 (PDT) (envelope-from imp@FreeBSD.org) From: Warner Losh Received: (from imp@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id MAA08906; Wed, 1 Jul 1998 12:56:20 -0700 (PDT) Date: Wed, 1 Jul 1998 12:56:20 -0700 (PDT) Message-Id: <199807011956.MAA08906@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-usrbin@FreeBSD.ORG Subject: cvs commit: src/usr.bin/doscmd config.c cwd.c dos.c doscmd.c doscmd.h int13.c intff.c Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk imp 1998/07/01 12:56:19 PDT Modified files: usr.bin/doscmd config.c cwd.c dos.c doscmd.c doscmd.h int13.c intff.c Log: Make sourcer's main program execute in X mode. o Make the dos emulation treat c: and C: the same way. Sourcer was doing a chdir("c:\\") rather than a chdir("C:\\"); o use drlton() in all places where we used to use -'A' so that we're always case independent. o use drntol() in all places where we used to use + 'A' for similar reasons Revision Changes Path 1.2 +7 -17 src/usr.bin/doscmd/config.c 1.2 +13 -11 src/usr.bin/doscmd/cwd.c 1.2 +2 -2 src/usr.bin/doscmd/dos.c 1.5 +8 -13 src/usr.bin/doscmd/doscmd.c 1.4 +3 -1 src/usr.bin/doscmd/doscmd.h 1.2 +9 -10 src/usr.bin/doscmd/int13.c 1.3 +7 -7 src/usr.bin/doscmd/intff.c