udhcpc: fix a problem with binary-encoded options #2
[oweals/busybox.git] / archival / ar.c
index f5a379fb8f14046598e220f321dbadf623e734c0..88236e878dad92161cb463af40548ce1eb36ac01 100644 (file)
@@ -21,7 +21,6 @@
 //usage:       "[-o] [-v] [-p] [-t] [-x] ARCHIVE FILES"
 //usage:#define ar_full_usage "\n\n"
 //usage:       "Extract or list FILES from an ar archive\n"
-//usage:     "\nOptions:"
 //usage:     "\n       -o      Preserve original dates"
 //usage:     "\n       -p      Extract to stdout"
 //usage:     "\n       -t      List"
@@ -29,7 +28,7 @@
 //usage:     "\n       -v      Verbose"
 
 #include "libbb.h"
-#include "archive.h"
+#include "bb_archive.h"
 #include "ar.h"
 
 #if ENABLE_FEATURE_AR_CREATE
@@ -82,7 +81,7 @@ static void output_ar_header(archive_handle_t *handle)
 }
 
 /*
- * when replacing files in an existing archive, copy from the the
+ * when replacing files in an existing archive, copy from the
  * original archive those files that are to be left intact
  */
 static void FAST_FUNC copy_data(archive_handle_t *handle)