summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Osterried <thomas@osterried.de>2009-01-24 10:48:43 +0000
committerThomas Osterried <thomas@osterried.de>2009-01-24 10:48:43 +0000
commit30ec781048430070a10c2aa4844929059240e65a (patch)
tree83350205c15288bad94692d42ffd0c0aea27276c
parent4811124e8b043c61c8a9a4397ad9a8427b02d15a (diff)
small fix
-rw-r--r--call/Makefile.in12
-rw-r--r--call/call.c3
2 files changed, 11 insertions, 4 deletions
diff --git a/call/Makefile.in b/call/Makefile.in
index 9d2d3df..deda4ce 100644
--- a/call/Makefile.in
+++ b/call/Makefile.in
@@ -103,6 +103,7 @@ EGREP = @EGREP@
EXEEXT = @EXEEXT@
F77 = @F77@
FFLAGS = @FFLAGS@
+GREP = @GREP@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
@@ -124,17 +125,13 @@ PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@
-SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
-ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_F77 = @ac_ct_F77@
-ac_ct_RANLIB = @ac_ct_RANLIB@
-ac_ct_STRIP = @ac_ct_STRIP@
am__fastdepCC_FALSE = @am__fastdepCC_FALSE@
am__fastdepCC_TRUE = @am__fastdepCC_TRUE@
am__fastdepCXX_FALSE = @am__fastdepCXX_FALSE@
@@ -151,23 +148,30 @@ build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
datadir = @datadir@
+datarootdir = @datarootdir@
+docdir = @docdir@
+dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
+htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
+localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
+pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
+psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
sysconfdir = @sysconfdir@
diff --git a/call/call.c b/call/call.c
index 5fad944..af7cb8d 100644
--- a/call/call.c
+++ b/call/call.c
@@ -2026,10 +2026,13 @@ out_fd:
int ret = write(fd, buf+offset, bytes-offset);
if (ret == -1) {
perror("write");
+ offset=-1;
break;
}
offset += ret;
}
+ if (offset == -1)
+ break;
}
}
if (uploadfile != -1) {