Change ncp_scan_bindery_object() to pass a constant search string.

The ncp_scan_bindery_object() function does not modify search_string
internally, so there is no need to declare it as `char *'.
This commit is contained in:
ed 2011-10-16 08:44:03 +00:00
parent 50100c914e
commit 21414c51c1
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ ncp_read_property_value(NWCONN_HANDLE connid, int object_type,
int
ncp_scan_bindery_object(NWCONN_HANDLE connid, u_int32_t last_id,
u_int16_t object_type, char *search_string,
u_int16_t object_type, const char *search_string,
struct ncp_bindery_object *target)
{
int error;

View File

@ -174,7 +174,7 @@ int ncp_get_bindery_object_id(NWCONN_HANDLE, u_int16_t, const char *,
int ncp_get_bindery_object_name(NWCONN_HANDLE, u_int32_t,
struct ncp_bindery_object *);
int ncp_scan_bindery_object(NWCONN_HANDLE, u_int32_t, u_int16_t,
char *, struct ncp_bindery_object *);
const char *, struct ncp_bindery_object *);
int ncp_read_property_value(NWCONN_HANDLE, int object_type, const char *,
int, const char *, struct nw_property *);
int ncp_get_encryption_key(NWCONN_HANDLE, char *);