search for: ierrno

Displaying 5 results from an estimated 5 matches for "ierrno".

Did you mean: errno
2013 Apr 16
7
[Bug 9798] New: rsync crash with SIGSEGV when read time out happens
https://bugzilla.samba.org/show_bug.cgi?id=9798 Summary: rsync crash with SIGSEGV when read time out happens Product: rsync Version: 3.0.2 Platform: All OS/Version: All Status: NEW Severity: critical Priority: P5 Component: core AssignedTo: wayned at samba.org ReportedBy: vijunag at
2015 Jun 17
8
[Bug 11338] New: Rsync Crash - Segmentation fault
https://bugzilla.samba.org/show_bug.cgi?id=11338 Bug ID: 11338 Summary: Rsync Crash - Segmentation fault Product: rsync Version: 3.1.1 Hardware: x64 OS: Linux Status: NEW Severity: normal Priority: P5 Component: core Assignee: wayned at samba.org Reporter:
2009 Mar 05
0
[PATCH 5/5] COM32/rosh: Improvements
..._version(); + puts(rosh_help_str2); + } else { + switch (istr[0]) { + case 'l': puts(rosh_help_ls_str); + break; + default: printf(rosh_help_str_adv, istr); + } + } + break; + case 1: default: + rosh_version(); + puts(rosh_help_str1); + } +} + /* Handle most/all errors * ierrno Input Error number * cmdstr Command being executed to cause error @@ -138,21 +159,27 @@ void rosh_error(const int ierrno, const char *cmdstr, const char *filestr) { printf("--ERROR: %s '%s': ", cmdstr, filestr); switch (ierrno) { - case EACCES: printf("Access DENIED\n&...
2009 Feb 15
2
COM32 module: Read-Only shell
...bpos = rosh_search_nonsp(src, ipos); + epos = rosh_search_sp(src, bpos); + if (epos > bpos) { + memcpy(dest, src + bpos, epos-bpos); + if (dest[epos - bpos] != 0) + dest[epos - bpos] = 0; + } else { + epos = strlen(src); + dest[0] = 0; + } + return epos; +} + +/* Handle most/all errors + * ierrno Input Error number + * cmdstr Command being executed to cause error + * filestr File/parameter causing error + */ +void rosh_error(const int ierrno, const char *cmdstr, const char *filestr) +{ + printf("--ERROR: %s '%s': ", cmdstr, filestr); + switch (ierrno) { + case EACCES: prin...
2010 Jun 27
1
[PATCH] ROSH: Upgraded
...s(rosh_help_str2); + } else { + switch (istr[0]) { + case 'l': + puts(rosh_help_ls_str); + break; + default: + printf(rosh_help_str_adv, istr); + } + } + break; + case 1: + default: + rosh_version(); + puts(rosh_help_str1); + } +} + /* Handle most/all errors * ierrno Input Error number * cmdstr Command being executed to cause error @@ -143,26 +152,38 @@ void rosh_error(const int ierrno, const char *cmdstr, const char *filestr) { printf("--ERROR: %s '%s': ", cmdstr, filestr); switch (ierrno) { - case EACCES: - printf("Acces...