diff options
author | Guillem Jover <guillem@debian.org> | 2010-02-08 03:18:44 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2010-02-19 06:48:26 +0100 |
commit | 167be722b2f01607a498104ad954d1d2d02a70f2 (patch) | |
tree | d3e4494ae6fae3ebb92c9acc757c3b9b44987da4 /scripts/Dpkg/IPC.pm | |
parent | 45dc465f075075f481be7c3dfac38bf041fc9c0e (diff) | |
download | dpkg-167be722b2f01607a498104ad954d1d2d02a70f2.tar.gz |
scripts: Unify fork error string
Diffstat (limited to 'scripts/Dpkg/IPC.pm')
-rw-r--r-- | scripts/Dpkg/IPC.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Dpkg/IPC.pm b/scripts/Dpkg/IPC.pm index 8f74b5131..c3542eb35 100644 --- a/scripts/Dpkg/IPC.pm +++ b/scripts/Dpkg/IPC.pm @@ -222,7 +222,7 @@ sub spawn { } # Fork and exec my $pid = fork(); - syserr(_g("fork for %s"), "@prog") unless defined $pid; + syserr(_g("cannot fork for %s"), "@prog") unless defined $pid; if (not $pid) { # Define environment variables if ($opts{"env"}) { |