summaryrefslogtreecommitdiffstats
path: root/usr.sbin/lpr/common_source/recvjob.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/lpr/common_source/recvjob.c')
-rw-r--r--usr.sbin/lpr/common_source/recvjob.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.sbin/lpr/common_source/recvjob.c b/usr.sbin/lpr/common_source/recvjob.c
index 192d993..0a10e49 100644
--- a/usr.sbin/lpr/common_source/recvjob.c
+++ b/usr.sbin/lpr/common_source/recvjob.c
@@ -43,7 +43,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)recvjob.c 8.2 (Berkeley) 4/27/95";
#endif
static const char rcsid[] =
- "$Id$";
+ "$Id: recvjob.c,v 1.10 1997/09/24 06:47:55 charnier Exp $";
#endif /* not lint */
/*
@@ -263,7 +263,8 @@ readfile(file, size)
if (err)
frecverr("%s: write error", file);
if (noresponse()) { /* file sent had bad data in it */
- (void) unlink(file);
+ if (strchr(file, '/') == NULL)
+ (void) unlink(file);
return(0);
}
ack();
@@ -328,15 +329,16 @@ static void
rcleanup(signo)
int signo;
{
- if (tfname[0])
+ if (tfname[0] && strchr(tfname, '/') == NULL)
(void) unlink(tfname);
- if (dfname[0])
+ if (dfname[0] && strchr(dfname, '/') == NULL) {
do {
do
(void) unlink(dfname);
while (dfname[2]-- != 'A');
dfname[2] = 'z';
} while (dfname[0]-- != 'd');
+ }
dfname[0] = '\0';
}
OpenPOWER on IntegriCloud