* histrap.c: picky /a1/sw/pkgs/gcc-3.4.3/bin/../lib/gcc/sparc-sun-solaris2.8/3.4.3/
* main.c: thinko
This commit is contained in:
parent
4867c8dcef
commit
0b7376a1ad
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include "sh.h"
|
#include "sh.h"
|
||||||
|
|
||||||
__RCSID("$MirOS: src/bin/mksh/histrap.c,v 1.38 2007/01/12 01:49:28 tg Exp $");
|
__RCSID("$MirOS: src/bin/mksh/histrap.c,v 1.39 2007/01/12 02:06:34 tg Exp $");
|
||||||
|
|
||||||
Trap sigtraps[NSIG + 1];
|
Trap sigtraps[NSIG + 1];
|
||||||
static struct sigaction Sigact_ign, Sigact_trap;
|
static struct sigaction Sigact_ign, Sigact_trap;
|
||||||
@ -986,7 +986,7 @@ inittraps(void)
|
|||||||
sigtraps[i].name = s = str_save(
|
sigtraps[i].name = s = str_save(
|
||||||
!strncasecmp(cs, "SIG", 3) ? cs + 3 : cs,
|
!strncasecmp(cs, "SIG", 3) ? cs + 3 : cs,
|
||||||
APERM);
|
APERM);
|
||||||
while (*s = ksh_toupper(*s))
|
while ((*s = ksh_toupper(*s)))
|
||||||
++s;
|
++s;
|
||||||
}
|
}
|
||||||
#if HAVE_SYS_SIGLIST
|
#if HAVE_SYS_SIGLIST
|
||||||
|
9
main.c
9
main.c
@ -13,7 +13,7 @@
|
|||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
__RCSID("$MirOS: src/bin/mksh/main.c,v 1.65 2007/01/11 00:32:31 tg Exp $");
|
__RCSID("$MirOS: src/bin/mksh/main.c,v 1.66 2007/01/12 02:06:34 tg Exp $");
|
||||||
|
|
||||||
extern char **environ;
|
extern char **environ;
|
||||||
|
|
||||||
@ -137,10 +137,9 @@ main(int argc, char *argv[])
|
|||||||
def_path = _PATH_DEFPATH;
|
def_path = _PATH_DEFPATH;
|
||||||
#else
|
#else
|
||||||
#ifdef _CS_PATH
|
#ifdef _CS_PATH
|
||||||
if ((len = confstr(_CS_PATH, NULL, 0)) != (size_t)-1 &&
|
if ((k = confstr(_CS_PATH, NULL, 0)) != (size_t)-1 && k > 0 &&
|
||||||
len > 0 && confstr(_CS_PATH, new = alloc(len + 1, APERM),
|
confstr(_CS_PATH, cp = alloc(k + 1, APERM), k + 1) == k + 1)
|
||||||
len + 1) == len + 1)
|
def_path = cp;
|
||||||
def_path = new;
|
|
||||||
else
|
else
|
||||||
#endif
|
#endif
|
||||||
def_path = "/bin:/usr/bin:/sbin:/usr/sbin";
|
def_path = "/bin:/usr/bin:/sbin:/usr/sbin";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user