search for: homestr

Displaying 2 results from an estimated 2 matches for "homestr".

Did you mean: homestar
2007 Aug 22
0
weird error - illegal instruction
...) do |session| shell = session.shell.sync out = shell.sudo "-u abcdedf" p out.stdout p out.status p out.stderr shell.exit if out.status == 0 @user_in_group.save redirect_to :action => ''home'', :homestring => ''You were successfully subscribed to the mailing list'' else redirect_to :action => ''home'', :homestring => ''Unable to subscribe from the mailing list, Please try again later'' end end end --------------e...
2020 Mar 28
0
[klibc:update-dash] dash: expand: Do not reprocess data when expanding words
...const char *home; + char *p; + p = startp; name = p + 1; while ((c = *++p) != '\0') { @@ -376,19 +370,21 @@ exptilde(char *startp, char *p, int flag) } } done: + if (flag & EXP_DISCARD) + goto out; *p = '\0'; if (*name == '\0') { home = lookupvar(homestr); } else { home = getpwhome(name); } + *p = c; if (!home) goto lose; - *p = c; strtodest(home, flag | EXP_QUOTED); +out: return (p); lose: - *p = c; return (startp); } @@ -437,63 +433,43 @@ removerecordregions(int endoff) * Expand arithmetic expression. Backup to start of e...