Fix build.  Remove superfluous check triggering compiler error.

Change-Id: I408b54938acfa475cf8734a50a5459218a4b325a
diff --git a/clatd.c b/clatd.c
index 7b8e43f..d8a9e72 100644
--- a/clatd.c
+++ b/clatd.c
@@ -418,7 +418,7 @@
   if (net_id_str != NULL) {
     char *end_ptr;
     net_id = strtoul(net_id_str, &end_ptr, 0);
-    if (net_id == ULONG_MAX || *net_id_str == 0 || *end_ptr != 0) {
+    if (*net_id_str == 0 || *end_ptr != 0) {
       logmsg(ANDROID_LOG_FATAL, "clatd called with invalid NetID %s", net_id_str);
       exit(1);
     }