lintian doesn't like orphan packages with uploaders...
[debian/amanda] / device-src / dvdrw-device.c
index 128e05ff0d17694d226e478e3c2a77d35fdd8850..7525bbf5d2e7d1ede224036f860cd8863ead87c1 100644 (file)
@@ -1,6 +1,7 @@
 /*
  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
  * Copyright (c) 2009 University of Maryland at College Park
+ * Copyright (c) 2007-2012 Zmanda, Inc.  All Rights Reserved.
  * All Rights Reserved.
  *
  * Permission to use, copy, modify, distribute, and sell this software and its
@@ -690,7 +691,6 @@ execute_command(DvdRwDevice *self, gchar **argv, gint *result)
     gint errnum = 0;
     GError *error = NULL;
     gboolean success;
-    int signum = 0;
 
     /* g_debug("Executing: %s", argv[0]); */
 
@@ -701,7 +701,6 @@ execute_command(DvdRwDevice *self, gchar **argv, gint *result)
 
     if (WIFSIGNALED(errnum)) {
        success = FALSE;
-       signum = WTERMSIG(errnum);
     } else if (WIFEXITED(errnum)) {
        success = (WEXITSTATUS(errnum) == 0);
     } else {