From: Zeev Suraski Date: Thu, 7 Aug 2003 16:46:11 +0000 (+0000) Subject: Remove 'proto' from internal functions X-Git-Tag: RELEASE_0_5_3~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9db05a36a5e94dcf1e5e30bffd8ae1abe24277d8;p=php Remove 'proto' from internal functions --- diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c index 273fbc4699..3ecf05a52a 100644 --- a/ext/snmp/snmp.c +++ b/ext/snmp/snmp.c @@ -716,7 +716,7 @@ PHP_FUNCTION(snmpset) } /* }}} */ -/* {{{ proto int netsnmp_session_set_sec_name(struct snmp_session *s, char *name) +/* {{{ int netsnmp_session_set_sec_name(struct snmp_session *s, char *name) Set the security name in the snmpv3 session */ static int netsnmp_session_set_sec_name(struct snmp_session *s, char *name) { @@ -729,7 +729,7 @@ static int netsnmp_session_set_sec_name(struct snmp_session *s, char *name) } /* }}} */ -/* {{{ proto int netsnmp_session_set_sec_level(struct snmp_session *s, char *level) +/* {{{ int netsnmp_session_set_sec_level(struct snmp_session *s, char *level) Set the security level in the snmpv3 session */ static int netsnmp_session_set_sec_level(struct snmp_session *s, char *level TSRMLS_DC) { @@ -750,7 +750,7 @@ static int netsnmp_session_set_sec_level(struct snmp_session *s, char *level TSR } /* }}} */ -/* {{{ proto int netsnmp_session_set_auth_protocol(struct snmp_session *s, char *prot) +/* {{{ int netsnmp_session_set_auth_protocol(struct snmp_session *s, char *prot) Set the authentication protocol in the snmpv3 session */ static int netsnmp_session_set_auth_protocol(struct snmp_session *s, char *prot TSRMLS_DC) { @@ -771,7 +771,7 @@ static int netsnmp_session_set_auth_protocol(struct snmp_session *s, char *prot } /* }}} */ -/* {{{ proto int netsnmp_session_set_sec_protocol(struct snmp_session *s, char *prot) +/* {{{ int netsnmp_session_set_sec_protocol(struct snmp_session *s, char *prot) Set the security protocol in the snmpv3 session */ static int netsnmp_session_set_sec_protocol(struct snmp_session *s, char *prot TSRMLS_DC) { @@ -802,7 +802,7 @@ static int netsnmp_session_set_sec_protocol(struct snmp_session *s, char *prot T } /* }}} */ -/* {{{ proto int netsnmp_session_gen_auth_key(struct snmp_session *s, char *pass) +/* {{{ int netsnmp_session_gen_auth_key(struct snmp_session *s, char *pass) Make key from pass phrase in the snmpv3 session */ static int netsnmp_session_gen_auth_key(struct snmp_session *s, char *pass TSRMLS_DC) { @@ -834,7 +834,7 @@ static int netsnmp_session_gen_auth_key(struct snmp_session *s, char *pass TSRML } /* }}} */ -/* {{{ proto int netsnmp_session_gen_sec_key(struct snmp_session *s, u_char *pass) +/* {{{ int netsnmp_session_gen_sec_key(struct snmp_session *s, u_char *pass) Make key from pass phrase in the snmpv3 session */ static int netsnmp_session_gen_sec_key(struct snmp_session *s, u_char *pass TSRMLS_DC) {