Oops, missed a few places where EXIT_SUCCESS was being used.

Signed-off-by: Daniel Hunsaker <danhunsaker@gmail.com>
diff --git a/system/libraries/Trackback.php b/system/libraries/Trackback.php
index ea8017e..ecc7129 100644
--- a/system/libraries/Trackback.php
+++ b/system/libraries/Trackback.php
@@ -212,7 +212,7 @@
 	public function send_error($message = 'Incomplete Information')
 	{
 		echo '<?xml version="1.0" encoding="utf-8"?'.">\n<response>\n<error>1</error>\n<message>".$message."</message>\n</response>";
-		exit(EXIT_SUCCESS);
+		exit;
 	}
 
 	// --------------------------------------------------------------------
@@ -228,7 +228,7 @@
 	public function send_success()
 	{
 		echo '<?xml version="1.0" encoding="utf-8"?'.">\n<response>\n<error>0</error>\n</response>";
-		exit(EXIT_SUCCESS);
+		exit;
 	}
 
 	// --------------------------------------------------------------------