aboutsummaryrefslogtreecommitdiffstats
path: root/etc.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--etc.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/etc.c b/etc.c
index 93d4cd4..c412b95 100644
--- a/etc.c
+++ b/etc.c
@@ -1,4 +1,4 @@
-/* $Id: etc.c,v 1.46 2002/12/27 16:09:18 ukai Exp $ */
+/* $Id: etc.c,v 1.47 2003/01/10 16:42:26 ukai Exp $ */
#include "fm.h"
#include <pwd.h>
#include "myctype.h"
@@ -7,11 +7,6 @@
#include "hash.h"
#include "terms.h"
-#ifdef HAVE_GETCWD /* ??? ukai */
-#include <unistd.h>
-#include <sys/param.h>
-#endif /* HAVE_GETCWD */
-
#include <sys/types.h>
#include <time.h>
#if defined(HAVE_WAITPID) || defined(HAVE_WAIT3)
@@ -1517,7 +1512,8 @@ tmpfname(int type, char *ext)
tmpf = Sprintf("%s/w3m%s%d-%d%s",
rc_dir,
tmpf_base[type],
- (int)getpid(), tmpf_seq[type]++, (ext) ? ext : "");
+ CurrentPid, tmpf_seq[type]++, (ext) ? ext : "");
+ pushText(fileToDelete, tmpf->ptr);
return tmpf;
}