Package: viruskiller
Version: 1.0-1-1
Severity: minor
Tags: patch
Running viruskiller with PAK file missing gives messages about another game
of the same group. Errors where found in:
* first line of the message
* the URL at the end.
Attached is a log file of the error reproduction and a patch to fix it in the
source.
*** test.log
[EMAIL PROTECTED]:~$ su -c "mv /usr/share/games/viruskiller/viruskiller.pak
/tmp"
Password:
[EMAIL PROTECTED]:~$ viruskiller
Fatal Error: The Blob Wars PAK file was either not found or was not accessable.
(If you compiled from source did you forget to run make install?)
The path to the file was expected to be,
/usr/share/games/viruskiller/viruskiller.pak
Please try running the game again. If problems persist either reinstall the
game or check,
http://www.parallelrealities.co.uk/blobWars.php
for updates.
[EMAIL PROTECTED]:~$
-- System Information:
Debian Release: testing/unstable
APT prefers testing
APT policy: (101, 'testing')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)
Versions of packages viruskiller depends on:
ii libc6 2.3.5-6 GNU C Library: Shared libraries an
ii libgcc1 1:4.0.1-2 GCC support library
ii libsdl-image1 1.2.4-1 image loading library for Simple D
ii libsdl-mixer1 1.2.6-1 mixer library for Simple DirectMed
ii libsdl-ttf2.0 2.0.6-5 ttf library for Simple DirectMedia
ii libsdl1.2debi 1.2.7+1.2.8cvs20041007-5.3 Simple DirectMedia Layer
ii libstdc++6 4.0.1-2 The GNU Standard C++ Library v3
ii zlib1g 1:1.2.3-4 compression library - runtime
viruskiller recommends no packages.
-- no debconf information
--- viruskiller-1.0-1/src/CPak.cpp~ 2005-05-21 14:03:45.000000000 -0300
+++ viruskiller-1.0-1/src/CPak.cpp 2005-09-22 20:31:25.000000000 -0300
@@ -48,12 +48,12 @@
void Pak::showPakErrorAndExit()
{
- printf("\nFatal Error: The Blob Wars PAK file was either not found or
was not accessable.\n");
+ printf("\nFatal Error: The VirusKiller PAK file was either not found or
was not accessable.\n");
printf("(If you compiled from source did you forget to run make
install?)\n");
printf("The path to the file was expected to be,\n\n");
printf(PAKFULLPATH"\n\n");
printf("Please try running the game again. If problems persist either
reinstall the game or check,\n\n");
- printf("http://www.parallelrealities.co.uk/blobWars.php\n\n");
+ printf("http://www.parallelrealities.co.uk/virusKiller.php\n\n");
printf("for updates.\n\n");
exit(1);
}