summaryrefslogtreecommitdiffstats
path: root/ax25/axgetput
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2013-06-05 00:57:38 +0200
committerRalf Baechle <ralf@linux-mips.org>2013-06-17 17:11:30 +0200
commit1245fbd2a8d60bab7b16b8a1d3c0122fee72f53f (patch)
tree6dcf938b1472a9b5cac35648ffb0f3d185c39590 /ax25/axgetput
parent0b4425760be1f92a1f25daeb5d3dc91814a98622 (diff)
Nuke trailing whitespace.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'ax25/axgetput')
-rw-r--r--ax25/axgetput/Makefile.am10
-rw-r--r--ax25/axgetput/axgetput.c2
-rw-r--r--ax25/axgetput/proto_bin.c6
-rw-r--r--ax25/axgetput/util.c2
4 files changed, 10 insertions, 10 deletions
diff --git a/ax25/axgetput/Makefile.am b/ax25/axgetput/Makefile.am
index 8eae7cc..de92dda 100644
--- a/ax25/axgetput/Makefile.am
+++ b/ax25/axgetput/Makefile.am
@@ -1,19 +1,19 @@
installconf:
-etcfiles =
-varfiles =
+etcfiles =
+varfiles =
-sbin_PROGRAMS =
+sbin_PROGRAMS =
bin_PROGRAMS = axgetput
-dist_man_MANS = axgetput.1
+dist_man_MANS = axgetput.1
axgetput_SOURCES = axgetput.c axgetput.h util.h proto_bin.h util.c proto_bin.c includes.h
install-exec-hook:
(cd $(DESTDIR)$(bindir) && ln -sf axgetput bget && ln -sf axgetput bput)
-install-data-hook:
+install-data-hook:
(cd $(DESTDIR)$(mandir)/man1 && ln -sf axgetput.1 bget.1 && ln -sf axgetput.1 bput.1)
diff --git a/ax25/axgetput/axgetput.c b/ax25/axgetput/axgetput.c
index 9513a8f..1696dbf 100644
--- a/ax25/axgetput/axgetput.c
+++ b/ax25/axgetput/axgetput.c
@@ -223,7 +223,7 @@ int main(int argc, char *argv[])
fdin_is_pipe = (isatty(fdin) ? 0 : 1);
fdout_is_pipe = (isatty(fdout) ? 0 : 1);
- if (fdin_is_pipe && fdout_is_pipe) {
+ if (fdin_is_pipe && fdout_is_pipe) {
fprintf(stderr, "error: cannot work in between two pipes\n");
exit(1);
}
diff --git a/ax25/axgetput/proto_bin.c b/ax25/axgetput/proto_bin.c
index 004ca5e..d02249b 100644
--- a/ax25/axgetput/proto_bin.c
+++ b/ax25/axgetput/proto_bin.c
@@ -21,7 +21,7 @@ static int crcbit[8] = {
static int init_crc(void)
{
int i,j;
-
+
for (i = 0; i < 256; i++) {
crctab[i] = 0;
for (j = 0; j < 8; j++) {
@@ -192,7 +192,7 @@ int bput(void)
goto abort;
}
if (!len) {
- save_close(fddata);
+ save_close(fddata);
if (!term_line) {
sprintf(err_msg, "error: unexpected end of file during read: %s\n", strerror(errno));
return 1;
@@ -331,7 +331,7 @@ int bget(void) {
file_time = statbuf.st_mtime;
else
file_time = time(0);
-
+
/* compute crc */
while ((len = read(fddata, buf, BLOCKSIZ)) > 0) {
int i;
diff --git a/ax25/axgetput/util.c b/ax25/axgetput/util.c
index 5ce6ffb..98caeeb 100644
--- a/ax25/axgetput/util.c
+++ b/ax25/axgetput/util.c
@@ -79,7 +79,7 @@ int my_read(int fd, char *s, int len_max, int *eof, char *p_break)
return len_got;
}
-
+
/*---------------------------------------------------------------------------*/
int secure_write(int fd, char *s, int len_write) {