]> git.eshelyaron.com Git - emacs.git/commitdiff
(read_score) [HAVE_GETDELIM]: Trim trailing space.
authorColin Walters <walters@gnu.org>
Tue, 23 Apr 2002 20:23:05 +0000 (20:23 +0000)
committerColin Walters <walters@gnu.org>
Tue, 23 Apr 2002 20:23:05 +0000 (20:23 +0000)
lib-src/update-game-score.c

index 110c6a9e605dba3de801e103c1e636db8d75b69a..0762956a701682f6ebfbf8d13a4d5b4769b8e01d 100644 (file)
@@ -254,6 +254,8 @@ read_score(FILE *f, struct score_entry *score)
     if (getdelim(&score->username, &count, ' ', f) < 1
        || score->username == NULL)
       return -1;
+    /* Trim the space */
+    score->username[strlen(score->username)-1] = '\0';
   }
 #else
   {