ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/uulib/uucheck.c
(Generate patch)

Comparing Convert-UUlib/uulib/uucheck.c (file contents):
Revision 1.18 by root, Tue Oct 13 20:53:49 2009 UTC vs.
Revision 1.19 by root, Fri May 27 13:37:13 2011 UTC

51#include <uudeview.h> 51#include <uudeview.h>
52#include <uuint.h> 52#include <uuint.h>
53#include <fptools.h> 53#include <fptools.h>
54#include <uustring.h> 54#include <uustring.h>
55 55
56char * uucheck_id = "$Id: uucheck.c,v 1.18 2009/10/13 20:53:49 root Exp $"; 56char * uucheck_id = "$Id: uucheck.c,v 1.19 2011/05/27 13:37:13 root Exp $";
57 57
58/* 58/*
59 * Arbitrary number. This is the maximum number of part numbers we 59 * Arbitrary number. This is the maximum number of part numbers we
60 * store for our have-parts and missing-parts lists 60 * store for our have-parts and missing-parts lists
61 */ 61 */
1444 1444
1445 /* 1445 /*
1446 * Finalize checking 1446 * Finalize checking
1447 */ 1447 */
1448 1448
1449 if ((flag & 4) == 0) liter->state |= UUFILE_NODATA;
1450 if ((flag & 1) == 0) liter->state |= UUFILE_NOBEGIN; 1449 if ((flag & 1) == 0) liter->state |= UUFILE_NOBEGIN;
1451 if ((flag & 2) == 0) liter->state |= UUFILE_NOEND; 1450 if ((flag & 2) == 0) liter->state |= UUFILE_NOEND;
1451 if ((flag & 4) == 0) liter->state |= UUFILE_NODATA;
1452 1452
1453 if ((flag & 7) == 7 && miscount==0) { 1453 if ((flag & 7) == 7 && miscount==0) {
1454 liter->state = UUFILE_OK; 1454 liter->state = UUFILE_OK;
1455 } 1455 }
1456 1456

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines