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.8 by root, Thu Nov 6 13:33:41 2003 UTC vs.
Revision 1.9 by root, Tue Dec 28 14:09:19 2004 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.8 2003/11/06 13:33:41 root Exp $"; 56char * uucheck_id = "$Id: uucheck.c,v 1.9 2004/12/28 14:09:19 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 */
254 ptr = iter; 254 ptr = iter;
255 length = 0; 255 length = 0;
256 continue; 256 continue;
257 } 257 }
258 258
259 /* two consecutive dots don't look correct */ 259 /* a dot followed by sth. unesthetically doesn't look right */
260 if (*iter == '.') { 260 if (*iter < '0') {
261 ptr = iter + 1; 261 ptr = iter + 1;
262 length = 0; 262 length = 0;
263 continue; 263 continue;
264 } 264 }
265 265

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines