sescmd_cursor_reset didn't reset cursor's property pointer which made reset ineffective.

This commit is contained in:
VilhoRaatikka
2014-06-16 13:40:45 +03:00
parent 0200ca4e24
commit 4f03c775e5
3 changed files with 11 additions and 6 deletions

View File

@ -55,8 +55,8 @@ typedef struct rses_property_st rses_property_t;
typedef struct router_client_session ROUTER_CLIENT_SES;
typedef enum rses_property_type_t {
RSES_PROP_TYPE_UNDEFINED=0,
RSES_PROP_TYPE_SESCMD,
RSES_PROP_TYPE_UNDEFINED=-1,
RSES_PROP_TYPE_SESCMD=0,
RSES_PROP_TYPE_FIRST = RSES_PROP_TYPE_SESCMD,
RSES_PROP_TYPE_LAST=RSES_PROP_TYPE_SESCMD,
RSES_PROP_TYPE_COUNT=RSES_PROP_TYPE_LAST+1