aboutsummaryrefslogtreecommitdiffstats
path: root/form.c
diff options
context:
space:
mode:
authorFumitoshi UKAI <ukai@debian.or.jp>2002-06-17 17:51:39 +0000
committerFumitoshi UKAI <ukai@debian.or.jp>2002-06-17 17:51:39 +0000
commit5317691c2f3d387a40bfeaf2bb76a714bdbd996c (patch)
tree770ba167a8e6e1d781ea6c16ac53e4174c523b41 /form.c
parent[w3m-dev 03214] strtoul() -> strtol() for SunOS4 (diff)
downloadw3m-5317691c2f3d387a40bfeaf2bb76a714bdbd996c.tar.gz
w3m-5317691c2f3d387a40bfeaf2bb76a714bdbd996c.zip
[w3m-dev 03212] lstat() in form.c
* form.c: define lstat unless HAVE_LSTAT (form_write_from_file): always check lstat() From: Kiyokazu SUTO <suto@ks-and-ks.ne.jp>
Diffstat (limited to 'form.c')
-rw-r--r--form.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/form.c b/form.c
index 9f871d0..745103e 100644
--- a/form.c
+++ b/form.c
@@ -1,4 +1,4 @@
-/* $Id: form.c,v 1.13 2002/02/25 15:40:04 ukai Exp $ */
+/* $Id: form.c,v 1.14 2002/06/17 17:51:39 ukai Exp $ */
/*
* HTML forms
*/
@@ -8,12 +8,12 @@
#include "myctype.h"
#include "local.h"
-#ifdef __EMX__
+#ifndef HAVE_LSTAT
/* lstat is identical to stat, only the link itself is statted, not the file
* that is obtained by tracing the links. But on OS/2 systems, there is no
* differences. */
#define lstat stat
-#endif /* __EMX__ */
+#endif /* not HAVE_LSTAT */
extern Str *textarea_str;
#ifdef MENU_SELECT
@@ -642,10 +642,8 @@ form_write_from_file(FILE * f, char *boundary, char *name, char *filename,
fprintf(f, "Content-Type: %s\r\n\r\n",
type ? type : "application/octet-stream");
-#ifdef HAVE_LSTAT
if (lstat(file, &st) < 0)
goto write_end;
-#endif /* HAVE_LSTAT */
if (S_ISDIR(st.st_mode))
goto write_end;
fd = fopen(file, "r");