ERROR seems to be a reserved word change it to SCTP_ERROR to be able to build.

svn path=/trunk/; revision=13859
This commit is contained in:
Anders Broman 2005-03-22 15:19:53 +00:00
parent ab64f95039
commit 982f9318bb
1 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ HEARTBEAT_ACK = 5,
ABORT = 6,
SHUTDOWN = 7,
SHUTDOWN_ACK = 8,
ERROR = 9,
SCTP_ERROR = 9,
COOKIE_ECHO = 10,
COOKIE_ACK = 11
};
@ -83,7 +83,7 @@ char *chunk_name(int type)
CASE(ABORT);
CASE(SHUTDOWN);
CASE(SHUTDOWN_ACK);
CASE(ERROR);
CASE(SCTP_ERROR);
CASE(COOKIE_ECHO);
CASE(COOKIE_ACK);
}