Minor fixing.
authorMark Wooding <mdw@distorted.org.uk>
Thu, 6 Oct 2005 12:40:30 +0000 (13:40 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Tue, 14 Feb 2006 03:10:52 +0000 (03:10 +0000)
  * error: don't try to declare errno by hand: include the standard
    header file instead.

  * debian: fix maintainer email address.

debian/control
error.h

index 4ea5783..0d1534b 100644 (file)
@@ -1,5 +1,5 @@
 Source: qmail
-Maintainer: Mark Wooding <mdw@nsict.org>
+Maintainer: Mark Wooding <mdw@distorted.org.uk>
 Section: mail
 Priority: extra
 Standards-Version: 2.1.2.2
diff --git a/error.h b/error.h
index 01bd3dc..5d98c6b 100644 (file)
--- a/error.h
+++ b/error.h
@@ -1,7 +1,7 @@
 #ifndef ERROR_H
 #define ERROR_H
 
-extern int errno;
+#include <errno.h>
 
 extern int error_intr;
 extern int error_nomem;