diff options
author | Ron Yorston <rmy@pobox.com> | 2021-06-07 09:01:57 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2021-06-07 11:30:37 +0100 |
commit | cdd0e9946a45dd69dc0bc8a8d0bcb734c7234937 (patch) | |
tree | 298423a59df4c51461e708008ca15461fb9a403a /coreutils | |
parent | aef29667bf794761a76d7c744e1e434f744e0b9b (diff) | |
download | busybox-w32-cdd0e9946a45dd69dc0bc8a8d0bcb734c7234937.tar.gz busybox-w32-cdd0e9946a45dd69dc0bc8a8d0bcb734c7234937.tar.bz2 busybox-w32-cdd0e9946a45dd69dc0bc8a8d0bcb734c7234937.zip |
win32: rename update_dev_fd() as update_special_fd()
Avoid confusion between special devices and /dev/fd.
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/dd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/dd.c b/coreutils/dd.c index 15938f689..b476ed24f 100644 --- a/coreutils/dd.c +++ b/coreutils/dd.c | |||
@@ -511,7 +511,7 @@ int dd_main(int argc UNUSED_PARAM, char **argv) | |||
511 | #endif | 511 | #endif |
512 | xmove_fd(MINGW_SPECIAL(xopen)(infile, iflag), ifd); | 512 | xmove_fd(MINGW_SPECIAL(xopen)(infile, iflag), ifd); |
513 | #if ENABLE_PLATFORM_MINGW32 | 513 | #if ENABLE_PLATFORM_MINGW32 |
514 | update_dev_fd(get_dev_type(infile), ifd); | 514 | update_special_fd(get_dev_type(infile), ifd); |
515 | #endif | 515 | #endif |
516 | } else { | 516 | } else { |
517 | infile = bb_msg_standard_input; | 517 | infile = bb_msg_standard_input; |