From a8efadea3770b53b229fe805c9821e6ed83cb735 Mon Sep 17 00:00:00 2001 From: obrien Date: Thu, 3 Dec 1998 19:17:30 +0000 Subject: printf() was missing some arguments. -Wall is such a nice thing. --- security/portscanner/files/patch-aa | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'security/portscanner') diff --git a/security/portscanner/files/patch-aa b/security/portscanner/files/patch-aa index 8235c6ea8762..7a0100be070a 100644 --- a/security/portscanner/files/patch-aa +++ b/security/portscanner/files/patch-aa @@ -1,18 +1,21 @@ ---- portscanner.c.old Wed Nov 18 16:25:41 1998 -+++ portscanner.c Wed Nov 18 16:25:53 1998 -@@ -24,10 +24,10 @@ +--- portscanner.c.orig Sun Aug 9 14:50:35 1998 ++++ portscanner.c Thu Dec 3 11:15:05 1998 +@@ -24,18 +24,21 @@ /***********************************************************/ #include ++#include +#include #include #include #include -#include ++#include #include #include #include -@@ -35,7 +35,7 @@ ++#include + int sock = -1; struct sockaddr_in address; int result; @@ -21,3 +24,12 @@ extern int errno; int current_port = 0; u_short base_port = 0; +@@ -83,7 +86,7 @@ + } else if (verbose == 2) printf(" address valid\n"); + + if ((base_port > end_port) || ((short)base_port < 0)) { +- fprintf(stderr,"Bad port range : start=%d end=%d !\n"); ++ fprintf(stderr,"Bad port range : start=%d end=%d !\n",base_port,end_port); + exit(1); + } else if (verbose == 2) { + printf("Port range: %d to %d\n",base_port,end_port); -- cgit