summaryrefslogtreecommitdiff
path: root/scripts/Dpkg/Control
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2009-11-21 03:14:23 +0100
committerGuillem Jover <guillem@debian.org>2009-11-21 03:16:26 +0100
commit92303f6cba1ad180d7026a60bab9596b8c058fd7 (patch)
treea6f724708cf3966bd6b9fa9395f8b2ce3f21f50c /scripts/Dpkg/Control
parenta99017c55cfd69135110b48fb77203f413077228 (diff)
downloaddpkg-92303f6cba1ad180d7026a60bab9596b8c058fd7.tar.gz
Use angle brackets to mark i/o from descriptors
In this case use “<standard output>” and “<standard input>”, to make it clear that it's not a file with such name, in the same way we do in the reset of the code base.
Diffstat (limited to 'scripts/Dpkg/Control')
-rw-r--r--scripts/Dpkg/Control/Info.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Dpkg/Control/Info.pm b/scripts/Dpkg/Control/Info.pm
index 4856465a7..72fd9abae 100644
--- a/scripts/Dpkg/Control/Info.pm
+++ b/scripts/Dpkg/Control/Info.pm
@@ -52,7 +52,7 @@ sub new {
bless $self, $class;
if ($arg) {
if ($arg eq "-") {
- $self->parse_fh(\*STDIN, _g("standard input"));
+ $self->parse_fh(\*STDIN, _g("<standard input>"));
} else {
$self->parse($arg);
}