summaryrefslogtreecommitdiff
path: root/src/mkfifo.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-04-11 12:44:41 +0000
committerJim Meyering <jim@meyering.net>2003-04-11 12:44:41 +0000
commit37bcb6853cce3561174d44e45211353f462fd42e (patch)
treecf13c8d3ff5599e708b86cdf88a59f68df7ee36b /src/mkfifo.c
parent3cd987830d35ed168222c18b3bedab060d58169e (diff)
downloadcoreutils-37bcb6853cce3561174d44e45211353f462fd42e.tar.xz
Remove SPC in SPC-TAB sequence.
Diffstat (limited to 'src/mkfifo.c')
-rw-r--r--src/mkfifo.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mkfifo.c b/src/mkfifo.c
index 2fa279e8e..0cdb0b635 100644
--- a/src/mkfifo.c
+++ b/src/mkfifo.c
@@ -1,5 +1,5 @@
/* mkfifo -- make fifo's (named pipes)
- Copyright (C) 90, 91, 1995-2002 Free Software Foundation, Inc.
+ Copyright (C) 90, 91, 1995-2003 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -136,15 +136,15 @@ main (int argc, char **argv)
ensures the file mode permission bits are still set as desired. */
if (fail == 0 && specified_mode)
- {
- fail = chmod (argv[optind], newmode);
+ {
+ fail = chmod (argv[optind], newmode);
if (fail)
error (0, errno, _("cannot set permissions of fifo %s"),
quote (argv[optind]));
- }
+ }
if (fail)
- errors = 1;
+ errors = 1;
}
exit (errors);