]> err.no Git - dpkg/commitdiff
Dpkg::Changelog: Make warnings from __sanity_check_range more informative
authorFrank Lichtenheld <djpig@debian.org>
Mon, 10 Dec 2007 23:47:00 +0000 (00:47 +0100)
committerFrank Lichtenheld <djpig@debian.org>
Mon, 10 Dec 2007 23:47:00 +0000 (00:47 +0100)
Explicetly tell which information will be ignored.

scripts/Dpkg/Changelog.pm

index 1f1e0f63d9f5ad9538c0c3bd9d0a5c2f1978cb54..4cf0ca623efffcf498440b1992dfb8a0573d207c 100644 (file)
@@ -223,19 +223,19 @@ sub __sanity_check_range {
        $$from = $$since = $$to = $$until = '';
     }
     if ($$from && $$since) {
-       warning(_g( "you can only specify one of 'from' and 'since'" ));
+       warning(_g( "you can only specify one of 'from' and 'since', using 'since'" ));
        $$from = '';
     }
     if ($$to && $$until) {
-       warning(_g( "you can only specify one of 'to' and 'until'" ));
+       warning(_g( "you can only specify one of 'to' and 'until', using 'until'" ));
        $$to = '';
     }
     if ($$since && ($data->[0]{Version} eq $$since)) {
-       warning(_g( "'since' option specifies most recent version" ));
+       warning(_g( "'since' option specifies most recent version, ignoring" ));
        $$since = '';
     }
     if ($$until && ($data->[$#{$data}]{Version} eq $$until)) {
-       warning(_g( "'until' option specifies oldest version" ));
+       warning(_g( "'until' option specifies oldest version, ignoring" ));
        $$until = '';
     }
     $$start = 0 if $$start < 0;