home *** CD-ROM | disk | FTP | other *** search
- Only in orig: configure
- Only in orig: configure.in
- diff -cb orig/doschk.c new/doschk.c
- *** orig/doschk.c Tue Apr 20 22:46:22 1993
- --- new/doschk.c Sat May 22 14:32:14 1993
- ***************
- *** 200,206 ****
- {
- /* If trailing dot, it will be ignored by MSDOG, so don't */
- /* actually complain. */
- ! if (*(cp + 1) != NULL)
- {
- invalid_msg ();
- printf ("%s - too many dots\n", path);
- --- 200,206 ----
- {
- /* If trailing dot, it will be ignored by MSDOG, so don't */
- /* actually complain. */
- ! if (*(cp + 1) != 0)
- {
- invalid_msg ();
- printf ("%s - too many dots\n", path);
- ***************
- *** 459,464 ****
- --- 459,471 ----
- exit (1);
- }
- }
- + else
- + if ( isatty(0) )
- + {
- + fprintf(stderr, "\nGNU doschk - check filenames for DOS (and SYSV) compatibility\n"
- + "\nUsage: %s [name-list-file]\n", argv[0]);
- + exit(1);
- + }
- while (1)
- {
- char line[500];
- Only in new: doschk.exe
- Only in new: Makefile
- Only in orig: Makefile.in
- Only in new: patches.os2
-