diff options
author | tg <tg@FreeBSD.org> | 2001-05-22 11:30:22 +0000 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2001-05-22 11:30:22 +0000 |
commit | 2486cc2c02b231ee090e81656a2e20d081c054e1 (patch) | |
tree | fe1c575f39c9de8b64fdba78ab9db46f5cfb2e13 /usr.bin/doscmd | |
parent | 4a353a58b998439de8e61b99675b198e066119f7 (diff) | |
download | FreeBSD-src-2486cc2c02b231ee090e81656a2e20d081c054e1.zip FreeBSD-src-2486cc2c02b231ee090e81656a2e20d081c054e1.tar.gz |
Correct typo to get DOS function 0x51 (get PSP) to work.
PR: 15547
Submitted by: Atushi Sakauchi <sakauchi@yamame.to>
Diffstat (limited to 'usr.bin/doscmd')
-rw-r--r-- | usr.bin/doscmd/dos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/doscmd/dos.c b/usr.bin/doscmd/dos.c index 9742ea7..d2d5f6d 100644 --- a/usr.bin/doscmd/dos.c +++ b/usr.bin/doscmd/dos.c @@ -2354,7 +2354,7 @@ static struct intfunc_table int21_table [] = { { 0x4e, IFT_NOSUBFUNC, int21_find, "findfirst"}, { 0x4f, IFT_NOSUBFUNC, int21_find, "findnext"}, { 0x50, IFT_NOSUBFUNC, int21_50, "set psp"}, - { 0x50, IFT_NOSUBFUNC, int21_62, "get psp"}, + { 0x51, IFT_NOSUBFUNC, int21_62, "get psp"}, { 0x52, IFT_NOSUBFUNC, int21_NOFUNC, "get LoL"}, { 0x53, IFT_NOSUBFUNC, int21_NOFUNC, "translate BPB to DPB"}, { 0x54, IFT_NOSUBFUNC, int21_NULLFUNC, "get verify flag"}, |