zeev            Thu Aug  7 12:46:11 2003 EDT

  Modified files:              
    /php-src/ext/snmp   snmp.c 
  Log:
  Remove 'proto' from internal functions
  
  
Index: php-src/ext/snmp/snmp.c
diff -u php-src/ext/snmp/snmp.c:1.85 php-src/ext/snmp/snmp.c:1.86
--- php-src/ext/snmp/snmp.c:1.85        Thu Jul 24 17:48:55 2003
+++ php-src/ext/snmp/snmp.c     Thu Aug  7 12:46:11 2003
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
  */
 
-/* $Id: snmp.c,v 1.85 2003/07/24 21:48:55 harrie Exp $ */
+/* $Id: snmp.c,v 1.86 2003/08/07 16:46:11 zeev Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -716,7 +716,7 @@
 }
 /* }}} */
 
-/* {{{ 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 @@
 }
 /* }}} */
 
-/* {{{ 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 @@
 }
 /* }}} */
 
-/* {{{ 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 @@
 }
 /* }}} */
 
-/* {{{ 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 @@
 }
 /* }}} */
 
-/* {{{ 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 @@
 }
 /* }}} */
 
-/* {{{ 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)
 {



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to