| 1 |
< |
/* Copyright (c) 1992 Regents of the University of California */ |
| 1 |
> |
/* Copyright (c) 1993 Regents of the University of California */ |
| 2 |
|
|
| 3 |
|
#ifndef lint |
| 4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
| 391 |
|
#else |
| 392 |
|
pid = -1; /* no forking */ |
| 393 |
|
#endif |
| 394 |
< |
fls.l_len = (long)vres*hmult*hres*sizeof(COLR); |
| 395 |
< |
fls.l_start = scanorig + (vmult-1-ypos)*fls.l_len; |
| 394 |
> |
fls.l_start = scanorig + |
| 395 |
> |
((long)(vmult-1-ypos)*vres*hmult+xpos)*hres*sizeof(COLR); |
| 396 |
|
#if NFS |
| 397 |
+ |
fls.l_len = ((long)(vres-1)*hmult+1)*hres*sizeof(COLR); |
| 398 |
|
/* lock file section so NFS doesn't mess up */ |
| 399 |
|
fls.l_whence = 0; |
| 400 |
|
fls.l_type = F_WRLCK; |
| 401 |
|
fcntl(outfd, F_SETLKW, &fls); |
| 402 |
|
#endif |
| 403 |
|
/* write new piece to file */ |
| 404 |
< |
if (lseek(outfd, fls.l_start+(long)xpos*hres*sizeof(COLR), 0) == -1) |
| 404 |
> |
if (lseek(outfd, fls.l_start, 0) == -1) |
| 405 |
|
goto seekerr; |
| 406 |
|
if (hmult == 1) { |
| 407 |
|
if (writebuf(outfd, (char *)pbuf, |