Description: Fix spelling errors in binary and manpage reported by lintian

Index: nast/icmp.c
===================================================================
--- nast.orig/icmp.c	2012-06-16 20:43:26.000000000 -0700
+++ nast/icmp.c	2012-06-16 20:43:27.000000000 -0700
@@ -38,7 +38,7 @@
    n_print("princ",line_s,16,lg," -> ");
    n_print("princ",line_s,24,lg,"%s\n", inet_ntoa(ip->ip_dst));
    n_print("princ",++line_s,row_s,lg,"Version: %d\t", ip->ip_v);
-   n_print("princ",line_s,20,lg,"Lenght: %d\t", ntohs(ip->ip_len));
+   n_print("princ",line_s,20,lg,"Length: %d\t", ntohs(ip->ip_len));
    n_print("princ",line_s,35,lg,"TTL: %d\n", ip->ip_ttl);
    n_print("princ",++line_s,row_s,lg,"Type: ");
 
@@ -123,7 +123,7 @@
 	     n_print("princ",line_s,28,lg, "Redirect for host\n");
 	     break;
 	   case 2:
-	     n_print("princ",line_s,28,lg,"Redircet for tos & network\n");
+	     n_print("princ",line_s,28,lg,"Redirect for tos & network\n");
 	     break;
 	   case 3:
 	     n_print("princ",line_s,28,lg,"Redirect for tos & host\n");
Index: nast/igmp.c
===================================================================
--- nast.orig/igmp.c	2012-06-16 20:43:26.000000000 -0700
+++ nast/igmp.c	2012-06-16 20:43:27.000000000 -0700
@@ -29,7 +29,7 @@
 
    n_print("princ",line_s,row_s,lg,"\n---[ IGMP ]----------------------------------------------------------\n");
    n_print("princ",line_s=line_s+2,row_s,lg,"%s -> %s\n", inet_ntoa(ip->ip_src), inet_ntoa(ip->ip_dst));
-   n_print("princ",++line_s,row_s,lg,"IP Version: %d\t Lenght: %d\t", ip->ip_v, ntohs(ip->ip_len));
+   n_print("princ",++line_s,row_s,lg,"IP Version: %d\t Length: %d\t", ip->ip_v, ntohs(ip->ip_len));
    n_print("princ",line_s,30,lg,"TTL: %d\t Code: %d\n", ip->ip_ttl, igmp->igmp_code);
    n_print("princ",++line_s,row_s,lg,"Type: ");
 
Index: nast/main.c
===================================================================
--- nast.orig/main.c	2012-06-16 20:43:27.000000000 -0700
+++ nast/main.c	2012-06-16 20:43:27.000000000 -0700
@@ -375,7 +375,7 @@
    printf("\n%sOther options:%s\n", BOLD, NORMAL);
    printf("  -l, --log-file <filename>          Log reports to file (work with many features)\n");
    printf("  -B, --daemon                       Run in background like demon:\n");
-   printf("                                      usefull for sniffer/stream/arp_control logging\n");
+   printf("                                      useful for sniffer/stream/arp_control logging\n");
    printf("  -V, --version                      Show version information\n");
    printf("  -h, --help                         Print this help\n");
    printf("\n");
Index: nast/nast.8
===================================================================
--- nast.orig/nast.8	2012-06-16 20:43:27.000000000 -0700
+++ nast/nast.8	2012-06-16 20:43:27.000000000 -0700
@@ -332,7 +332,7 @@
 Versions later 0.2.0 have a new ncurses interface which has many improvements 
 regarding the correspondent command line version. For example you can select the 
 connection interactively for tcp stream and reset features and byte counting 
-module show much more informations (packets type and connections load).
+module show much more information (packets type and connections load).
 .TP
 Please read NCURSES_README file before using the ncurses interface!
 .PP
Index: nast/ncurses/n_menu.c
===================================================================
--- nast.orig/ncurses/n_menu.c	2012-06-16 20:43:26.000000000 -0700
+++ nast/ncurses/n_menu.c	2012-06-16 20:43:27.000000000 -0700
@@ -1309,7 +1309,7 @@
 	       mvwprintw(help,9,2,"[Shift + s]   -> Sniffer Menu");
 	       mvwprintw(help,10,2,"[Shift + a]   -> Analyzer Menu");
 	       mvwprintw(help,11,2,"[Shift + o]   -> Options Menu");
-	       mvwprintw(help,12,2,"[i]           -> Show informations about options");
+	       mvwprintw(help,12,2,"[i]           -> Show information about options");
 	       mvwprintw(help,13,2,"[x]           -> Erase Main Window");
 	       mvwprintw(help,14,2,"[d]           -> Erase Info window");
 	       mvwprintw(help,15,2,"[h]           -> This help");
Index: nast/tcp.c
===================================================================
--- nast.orig/tcp.c	2012-06-16 20:43:26.000000000 -0700
+++ nast/tcp.c	2012-06-16 20:43:27.000000000 -0700
@@ -47,7 +47,7 @@
    n_print("princ",++line_s,row_s,lg,"TTL: %d \t", ip->ip_ttl);
    n_print("princ",line_s,10,lg,"Window: %d\t", ntohs(tcp->th_win));
    n_print("princ",line_s,25,lg,"Version: %d\t", ip->ip_v);
-   n_print("princ",line_s,39,lg,"Lenght: %d\n", ntohs(ip->ip_len));
+   n_print("princ",line_s,39,lg,"Length: %d\n", ntohs(ip->ip_len));
    n_print("princ",++line_s,row_s,lg,"FLAGS: ");
 
    /*modifed by embyte */
Index: nast/udp.c
===================================================================
--- nast.orig/udp.c	2012-06-16 20:43:26.000000000 -0700
+++ nast/udp.c	2012-06-16 20:43:27.000000000 -0700
@@ -43,7 +43,7 @@
    service = getservbyport(htons(ntohs(udp->uh_dport)), "udp");
    n_print("princ",line_s,28,lg," -> ");
    n_print("princ",line_s,33,lg,"%s:%d(%s)\n", inet_ntoa(ip->ip_dst), ntohs(udp->uh_dport), (service) ? service->s_name : "unknown");
-   n_print("princ",++line_s,row_s,lg,"Version: %d\t Total Lenght: %d\t", ip->ip_v, ntohs(ip->ip_len));
+   n_print("princ",++line_s,row_s,lg,"Version: %d\t Total Length: %d\t", ip->ip_v, ntohs(ip->ip_len));
    n_print("princ",line_s,39,lg, "TTL: %d\n", ip->ip_ttl); 
    n_print("princ",++line_s,0,lg,"Packet Number: %d",npkt);
 
Index: nast/ncurses/n_nast.c
===================================================================
--- nast.orig/ncurses/n_nast.c	2012-06-16 13:00:31.000000000 -0700
+++ nast/ncurses/n_nast.c	2012-06-16 20:43:52.000000000 -0700
@@ -340,7 +340,7 @@
 	     mvwprintw(help,9,2,"[Shift + s]   -> Sniffer Menu");
 	     mvwprintw(help,10,2,"[Shift + a]   -> Analyzer Menu");
 	     mvwprintw(help,11,2,"[Shift + o]   -> Options Menu");
-	     mvwprintw(help,12,2,"[i]           -> Show informations about options");
+	     mvwprintw(help,12,2,"[i]           -> Show information about options");
 	     mvwprintw(help,13,2,"[x]           -> Erase Main Window");
 	     mvwprintw(help,14,2,"[d]           -> Erase Info window");
 	     mvwprintw(help,15,2,"[h]           -> This help");
