Changeset 374
- Timestamp:
- Nov 1, 2011, 9:53:54 PM (13 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/sh_prelink.c
r248 r374 48 48 SL_RETURN((-1), _("sh_prelink_set_path")); 49 49 } 50 50 #ifdef SH_EVAL_SHELL 51 51 prelink_path = sh_util_strdup(str); 52 53 52 SL_RETURN(0, _("sh_prelink_set_path")); 53 #else 54 prelink_path = NULL; 55 SL_RETURN((-1), _("sh_prelink_set_path")); 56 #endif 54 57 } 55 58 -
trunk/src/sh_processcheck.c
r362 r374 522 522 if (sh_prochk_pspath) 523 523 SH_FREE(sh_prochk_pspath); 524 #ifdef SH_EVAL_SHELL 524 525 sh_prochk_pspath = sh_util_strdup (str); 525 526 526 SL_RETURN((0), _("sh_prochk_set_pspath")); 527 527 #else 528 sh_prochk_pspath = NULL; 529 SL_RETURN((-1), _("sh_prochk_set_pspath")); 530 #endif 528 531 } 529 532 … … 536 539 if (sh_prochk_psarg) 537 540 SH_FREE(sh_prochk_psarg); 541 #ifdef SH_EVAL_SHELL 538 542 sh_prochk_psarg = sh_util_strdup (str); 539 540 543 SL_RETURN((0), _("sh_prochk_set_psarg")); 541 544 #else 545 sh_prochk_psarg = NULL; 546 SL_RETURN((-1), _("sh_prochk_set_psarg")); 547 #endif 542 548 } 543 549
Note:
See TracChangeset
for help on using the changeset viewer.