version 1.7, 2012/11/13 09:22:10
|
version 1.8, 2013/03/07 23:10:50
|
Line 12 terms:
|
Line 12 terms:
|
All of the documentation and software included in the ELWIX and AITNET |
All of the documentation and software included in the ELWIX and AITNET |
Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org> |
Releases is copyrighted by ELWIX - Sofia/Bulgaria <info@elwix.org> |
|
|
Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 | Copyright 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 |
by Michael Pounov <misho@elwix.org>. All rights reserved. |
by Michael Pounov <misho@elwix.org>. All rights reserved. |
|
|
Redistribution and use in source and binary forms, with or without |
Redistribution and use in source and binary forms, with or without |
Line 93 rpc_SetErr(int eno, char *estr, ...)
|
Line 93 rpc_SetErr(int eno, char *estr, ...)
|
va_list lst; |
va_list lst; |
|
|
rpc_Errno = eno; |
rpc_Errno = eno; |
memset(rpc_Error, 0, STRSIZ); | memset(rpc_Error, 0, sizeof rpc_Error); |
va_start(lst, estr); |
va_start(lst, estr); |
vsnprintf(rpc_Error, STRSIZ, estr, lst); | vsnprintf(rpc_Error, sizeof rpc_Error, estr, lst); |
va_end(lst); |
va_end(lst); |
} |
} |
|
|