]> git.pond.sub.org Git - empserver/blobdiff - src/lib/subs/natsub.c
Update copyright notice
[empserver] / src / lib / subs / natsub.c
index 8374ccb9135faecb5d54bdd285dd9673ff805343..cdec7a40446017b7d13c75164ea0cc3cc281c6c4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2009, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -120,23 +120,23 @@ check_nat_name(char *cname)
 {
     struct natstr *natp;
     natid cn;
-    int nonb;
-    char *temp;
+    int allblank;
+    char *p;
 
     if (strlen(cname) >= sizeof(natp->nat_cnam)) {
        pr("Country name too long\n");
        return 0;
     }
 
-    nonb = 0;
-    for (temp = cname; *temp != '\0'; temp++) {
-       if (iscntrl(*temp)) {
+    allblank = 1;
+    for (p = cname; *p != '\0'; p++) {
+       if (iscntrl(*p)) {
            pr("No control characters allowed in country names!\n");
            return 0;
-       } else if (!isspace(*temp))
-           nonb = 1;
+       } else if (!isspace(*p))
+           allblank = 0;
     }
-    if (!nonb) {
+    if (allblank) {
        pr("Country name can't be all blank\n");
        return 0;
     }