- Remove unnecessary warning from libbb and move bb_wfopen_input near bb_wfopen
[oweals/busybox.git] / coreutils / uudecode.c
index 1734ed41964c805bd9a17c59287645567b71b14d..6167c9fad2d2842de6c66baaf6357f5c89a43568 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  GPLv2
- *  Copyright 2003, Glenn McGrath <bug1@optushome.com.au>
+ *  Copyright 2003, Glenn McGrath <bug1@iinet.net.au>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License version 2 as published
  *  Based on specification from
  *  http://www.opengroup.org/onlinepubs/007904975/utilities/uuencode.html
  *
- *  Bugs: the spec doesnt mention anything about "`\n`\n" prior to the "end" line 
+ *  Bugs: the spec doesnt mention anything about "`\n`\n" prior to the "end" line
  */
 
 
 #include <stdio.h>
 #include <errno.h>
-#include <getopt.h>
+#include <getopt.h> /* optind */
 #include <string.h>
 #include <stdlib.h>
 
@@ -50,7 +50,7 @@ static int read_stduu(FILE *src_stream, FILE *dst_stream)
                if (length > 60) {
                        bb_error_msg_and_die("Line too long");
                }
-       
+
                line_ptr++;
                /* Tolerate an overly long line to acomadate a possible exta '`' */
                if (strlen(line_ptr) < length) {