*** ./config.h Fri Dec 15 14:25:36 1995 --- ../src/./config.h Thu Sep 17 09:26:39 1998 *************** *** 14,20 **** /* Sun: "/dev/tty" */ /* HP-UX: "/dev/tty1p" (???) */ ! #define SERIAL_NAME "/dev/cua" /* Set this to reflect the name of first serial device */ --- 14,20 ---- /* Sun: "/dev/tty" */ /* HP-UX: "/dev/tty1p" (???) */ ! #define SERIAL_NAME "/dev/ttyd" /* Set this to reflect the name of first serial device */ *************** *** 21,27 **** /* It will be concatenated with SERIAL_NAME to get the full */ /* name of the device. (on a Sun, this is 'a') */ ! #define SERIAL_FIRST '0' /* If your system is not POSIX compliant, comment "#define POSIX" */ --- 21,27 ---- /* It will be concatenated with SERIAL_NAME to get the full */ /* name of the device. (on a Sun, this is 'a') */ ! #define SERIAL_FIRST '1' /* If your system is not POSIX compliant, comment "#define POSIX" */ *** ./lxcopy.c Thu Dec 14 22:03:41 1995 --- ../src/./lxcopy.c Thu Sep 17 09:26:59 1998 *************** *** 170,176 **** while (*p) { while (*p && (*p != '/')) p++; ! if (*p) { *p = '\0'; if (stat(path, &statbuf)) --- 170,176 ---- while (*p) { while (*p && (*p != '/')) p++; ! if ((*p) && (p != path)) { *p = '\0'; if (stat(path, &statbuf)) *************** *** 195,200 **** --- 195,201 ---- LIST l = inlist; LIST l1, l2; char *p, source[256], target[256], base[256]; + char tmp; struct stat statbuf; if (recursive) *************** *** 278,284 **** sprintf(target, "%s", outlist->name); #ifdef LOWERCASE p = target; ! while (*p) *(p++) = tolower(*p); #endif make_dir(target); if (overwrite || stat(target, &statbuf)) --- 279,288 ---- sprintf(target, "%s", outlist->name); #ifdef LOWERCASE p = target; ! while (*p){ ! tmp = tolower(*p); ! *(p++) = tmp; ! } #endif make_dir(target); if (overwrite || stat(target, &statbuf))