*** empty log message ***

This commit is contained in:
Mike Goslin 2001-01-12 03:06:41 +00:00
parent 3a907839c4
commit f450390286
2 changed files with 7 additions and 4 deletions

View File

@ -588,6 +588,7 @@ run_to_ram(void) {
write_ret = write_to_ram(_current_status);
if (write_ret < 0)
return write_ret;
ret = EU_write_ram;
}
// Allocate a new buffer
@ -613,6 +614,7 @@ run_to_ram(void) {
write_ret = write_to_ram(_current_status);
if (write_ret < 0)
return write_ret;
ret = EU_write_ram;
}
// Attempt to receive the bytes from the socket

View File

@ -12,11 +12,12 @@
BEGIN_PUBLISH
enum ErrorUtilCode {
EU_eof = 5,
EU_network_no_data = 4,
EU_eof = 6,
EU_network_no_data = 5,
EU_ok = 3,
EU_write = 2,
EU_write_ram = 4,
EU_write = 3,
EU_ok = 2,
EU_success = 1,
// General errors