Changeset 42
- Timestamp:
- Jun 5, 2006, 12:44:29 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/Changelog
r41 r42 1 1 2.2.1: 2 * fix a regression that would make impossible local updates w/clients 3 * fix a few missing '\n' in sh_getopt.c 2 4 * sh_kern.c: fall back on mmap() if read() fails on /dev/kmem 3 5 * fix Solaris package creation -
trunk/src/sh_getopt.c
r27 r42 521 521 0 != (* op_table[i].func )(argv[1])) 522 522 fprintf (stderr, 523 _("Error processing option -%c "),523 _("Error processing option -%c\n"), 524 524 op_table[i].shortopt); 525 525 break; … … 531 531 0 != (* op_table[i].func )(NULL)) 532 532 fprintf (stderr, 533 _("Error processing option -%c "),533 _("Error processing option -%c\n"), 534 534 op_table[i].shortopt); 535 535 break; … … 586 586 0 != (* op_table[i].func )(argv[1])) 587 587 fprintf (stderr, 588 _("Error processing option -%s "),588 _("Error processing option -%s\n"), 589 589 op_table[i].longopt); 590 590 break; … … 600 600 0 != (* op_table[i].func )(theequal)) 601 601 fprintf (stderr, 602 _("Error processing option -%s "),602 _("Error processing option -%s\n"), 603 603 op_table[i].longopt); 604 604 break; … … 617 617 0 != (* op_table[i].func )(NULL)) 618 618 fprintf (stderr, 619 _("Error processing option -%s "),619 _("Error processing option -%s\n"), 620 620 op_table[i].longopt); 621 621 break; -
trunk/src/sh_unix.c
r40 r42 3686 3686 { 3687 3687 static int init = 0; 3688 struct stat buf; 3688 3689 3689 3690 SL_ENTER(_("file_is_remote")); … … 3696 3697 if (0 == sl_strncmp (sh.data.path, preq, 15)) 3697 3698 { 3699 if (sh.data.path[15] != '\0') /* should be start of path */ 3700 { 3701 if (0 == stat(&(sh.data.path[15]), &buf)) 3702 { 3703 SL_RETURN( S_FALSE, _("file_is_remote")); 3704 } 3705 } 3698 3706 SL_RETURN( S_TRUE, _("file_is_remote")); 3699 3707 }
Note:
See TracChangeset
for help on using the changeset viewer.