Module Name:    src
Committed By:   darrenr
Date:           Sun Jul 22 16:43:59 UTC 2012

Modified Files:
        src/sys/external/bsd/ipf/netinet: ip_tftp_pxy.c

Log Message:
ansify new function definition


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/external/bsd/ipf/netinet/ip_tftp_pxy.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/external/bsd/ipf/netinet/ip_tftp_pxy.c
diff -u src/sys/external/bsd/ipf/netinet/ip_tftp_pxy.c:1.3 src/sys/external/bsd/ipf/netinet/ip_tftp_pxy.c:1.4
--- src/sys/external/bsd/ipf/netinet/ip_tftp_pxy.c:1.3	Sun Jul 22 14:27:51 2012
+++ src/sys/external/bsd/ipf/netinet/ip_tftp_pxy.c	Sun Jul 22 16:43:59 2012
@@ -1,4 +1,4 @@
-/*	$NetBSD: ip_tftp_pxy.c,v 1.3 2012/07/22 14:27:51 darrenr Exp $	*/
+/*	$NetBSD: ip_tftp_pxy.c,v 1.4 2012/07/22 16:43:59 darrenr Exp $	*/
 
 /*
  * Copyright (C) 2012 by Darren Reed.
@@ -85,8 +85,7 @@ ipf_p_tftp_main_unload(void)
 
 
 void *
-ipf_p_tftp_soft_create(softc)
-	ipf_main_softc_t *softc;
+ipf_p_tftp_soft_create(ipf_main_softc_t *softc)
 {
 	ipf_tftp_softc_t *softt;
 
@@ -115,9 +114,7 @@ ipf_p_tftp_soft_create(softc)
 
 
 void
-ipf_p_tftp_soft_destroy(softc, arg)
-        ipf_main_softc_t *softc;
-        void *arg;
+ipf_p_tftp_soft_destroy(ipf_main_softc_t *softc, void *arg)
 {
 	ipf_tftp_softc_t *softt = arg;
 
@@ -252,9 +249,7 @@ ipf_p_tftp_new(void *arg, fr_info_t *fin
 
 
 void
-ipf_p_tftp_del(softc, aps)
-	ipf_main_softc_t *softc;
-	ap_session_t *aps;
+ipf_p_tftp_del(ipf_main_softc_t *softc, ap_session_t *aps)
 {
 	tftpinfo_t *tftp;
 

Reply via email to