diff options
Diffstat (limited to 'coreutils/uudecode.c')
-rw-r--r-- | coreutils/uudecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index 8b7de74ff..06512119e 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c @@ -166,7 +166,7 @@ int uudecode_main(int argc, char **argv) } outname++; } - if (strcmp(outname, "-") == 0) { + if (LONE_DASH(outname)) { dst_stream = stdout; } else { dst_stream = xfopen(outname, "w"); |