123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- +uudeview (0.5.20-3) unstable; urgency=low
- +
- + * Ack NMU. (closes: Bug#373630)
- + * Don't force overwrite mode if auto-rename enabled. (closes: Bug#378076)
- + * Don't ignore special chars when parsing MIME. (closes: Bug#341440)
- + * Fix for #320541 also fixes #242999. (closes: Bug#242999)
- + * Incorporate suspicious-file patch from Peter Muir. (closes: Bug#166077)
- ...
- + -- Chris Hanson <cph@debian.org> Tue, 15 Aug 2006 00:40:50 -0400
- Index: uudeview-0.5.20/unix/uudeview.c
- ===================================================================
- --- uudeview-0.5.20.orig/unix/uudeview.c
- +++ uudeview-0.5.20/unix/uudeview.c
- @@ -657,9 +657,6 @@ work_comline (int argc, char *argv[])
- else switch (*(argv[number] + 1)) {
- case '\0':
- interact = 0;
- - if (overwrite == 0) {
- - overwrite = 1;
- - }
- proc_stdin ();
- break;
- case 'a':
- @@ -699,10 +696,7 @@ work_comline (int argc, char *argv[])
- fprintf (stderr, "WARNING: cannot interact when reading from stdin\n");
- }
- else {
- - interact = (*argv[number] == '+') ? 1 : 0;
- - if (overwrite == 0 && *argv[number] == '-') {
- - overwrite = 1;
- - }
- + interact = (*argv[number] == '+') ? 1 : 0;
- }
- break;
- case 'm':
- @@ -773,6 +767,8 @@ work_comline (int argc, char *argv[])
- break;
- }
- }
- + if (overwrite == 0 && interact == 0 && autoren == 0)
- + overwrite = 1;
-
- return 1;
- }
- Index: uudeview-0.5.20/uulib/uunconc.c
- ===================================================================
- --- uudeview-0.5.20.orig/uulib/uunconc.c
- +++ uudeview-0.5.20/uulib/uunconc.c
- @@ -1437,6 +1437,9 @@ UUDecode (uulist *data)
- res = UURET_IOERR;
- break;
- }
- + UUMessage (uunconc_id, __LINE__, UUMSG_MESSAGE,
- + uustring (S_OPEN_FILE),
- + iter->data->sfname);
- _FP_strncpy (uugen_fnbuffer, iter->data->sfname, 1024);
- }
-
- Index: uudeview-0.5.20/uulib/uuscan.c
- ===================================================================
- --- uudeview-0.5.20.orig/uulib/uuscan.c
- +++ uudeview-0.5.20/uulib/uuscan.c
- @@ -387,10 +387,10 @@ ParseValue (char *attribute)
- *attribute != '(' && *attribute != ')' &&
- *attribute != '<' && *attribute != '>' &&
- *attribute != '@' && *attribute != ',' &&
- - /* *attribute != ';' && */ *attribute != ':' &&
- - *attribute != '\\' &&*attribute != '"' &&
- - *attribute != '/' && /* *attribute != '[' &&
- - *attribute != ']' && */ *attribute != '?' &&
- + *attribute != ';' && *attribute != ':' &&
- + *attribute != '\\' && *attribute != '"' &&
- + *attribute != '/' && *attribute != '[' &&
- + *attribute != ']' && *attribute != '?' &&
- *attribute != '=' && length < 255) {
- *ptr++ = *attribute++;
- length++;
- Index: uudeview-0.5.20/uulib/uustring.c
- ===================================================================
- --- uudeview-0.5.20.orig/uulib/uustring.c
- +++ uudeview-0.5.20/uulib/uustring.c
- @@ -107,6 +107,7 @@ static stringmap messages[] = {
- { S_MIME_B_NOT_FOUND, "Boundary expected on Multipart message but found EOF" },
- { S_MIME_MULTI_DEPTH, "Multipart message nested too deep" },
- { S_MIME_PART_MULTI, "Handling partial multipart message as plain text" },
- + { S_OPEN_FILE, "Opened file %s" },
-
- { 0, "" }
- };
- Index: uudeview-0.5.20/uulib/uustring.h
- ===================================================================
- --- uudeview-0.5.20.orig/uulib/uustring.h
- +++ uudeview-0.5.20/uulib/uustring.h
- @@ -36,3 +36,4 @@
- #define S_MIME_B_NOT_FOUND 35
- #define S_MIME_MULTI_DEPTH 36
- #define S_MIME_PART_MULTI 37
- +#define S_OPEN_FILE 38
|