pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] Changes to pspp/src/file-type.c


From: Ben Pfaff
Subject: [Pspp-cvs] Changes to pspp/src/file-type.c
Date: Mon, 02 May 2005 02:21:34 -0400

Index: pspp/src/file-type.c
diff -u pspp/src/file-type.c:1.18 pspp/src/file-type.c:1.19
--- pspp/src/file-type.c:1.18   Fri Apr 29 01:02:14 2005
+++ pspp/src/file-type.c        Mon May  2 06:21:20 2005
@@ -44,7 +44,7 @@
 /* Limited variable column specifications. */
 struct col_spec
   {
-   char name[SHORT_NAME_LEN + 1];      /* Variable name. */
+    char name[LONG_NAME_LEN + 1]; /* Variable name. */
     int fc, nc;                        /* First column (1-based), # of 
columns. */
     int fmt;                   /* Format type. */
     struct variable *v;                /* Variable. */
@@ -264,7 +264,7 @@
          goto error;
        }
       
-      if (!strcmp (fty->case_sbc.name, fty->record.name))
+      if (!strcasecmp (fty->case_sbc.name, fty->record.name))
        {
          msg (SE, _("CASE and RECORD must specify different variable "
                     "names."));




reply via email to

[Prev in Thread] Current Thread [Next in Thread]