commit | 70e8f49f71b824bbc7c5ec825eb33108134d1ee5 | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Thu Nov 06 15:13:33 2008 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Thu Nov 06 15:13:33 2008 +0000 |
tree | a676566475c29b6932514ee396af4772710b7cd6 | |
parent | fc66892abdd0934b6cb81571882f46a21488337a [diff] [blame] |
basename: fix error code. again. deja vu feeling...
diff --git a/coreutils/basename.c b/coreutils/basename.c index a3085ed..8a5597e 100644 --- a/coreutils/basename.c +++ b/coreutils/basename.c
@@ -48,5 +48,6 @@ /* puts(s) will do, but we can do without stdio this way: */ s[m++] = '\n'; - return full_write(STDOUT_FILENO, s, m) == (ssize_t)m; + /* NB: != is correct here: */ + return full_write(STDOUT_FILENO, s, m) != (ssize_t)m; }