aboutsummaryrefslogtreecommitdiff
path: root/tar.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-11-14 22:15:48 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-11-14 22:15:48 +0000
commita2487a08c6b12e383aeb79e06c3b18a6eeb4c2ff (patch)
treef51c6eddfc388f26e4e0dd8faffc7394e6151493 /tar.c
parent257cd1e2b05fa01eebbffd1c9f991742faa8e656 (diff)
downloadbusybox-w32-a2487a08c6b12e383aeb79e06c3b18a6eeb4c2ff.tar.gz
busybox-w32-a2487a08c6b12e383aeb79e06c3b18a6eeb4c2ff.tar.bz2
busybox-w32-a2487a08c6b12e383aeb79e06c3b18a6eeb4c2ff.zip
Grammer fix. Changed "longer then" to "longer than". Fix thanks to Jim
Gleason <jimg@lineo.com>. git-svn-id: svn://busybox.net/trunk/busybox@1300 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'tar.c')
-rw-r--r--tar.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tar.c b/tar.c
index 4fd864b25..07c0e7105 100644
--- a/tar.c
+++ b/tar.c
@@ -39,7 +39,7 @@
39#include "busybox.h" 39#include "busybox.h"
40#define BB_DECLARE_EXTERN 40#define BB_DECLARE_EXTERN
41#define bb_need_io_error 41#define bb_need_io_error
42#define bb_need_name_longer_then_foo 42#define bb_need_name_longer_than_foo
43#include "messages.c" 43#include "messages.c"
44#include <stdio.h> 44#include <stdio.h>
45#include <dirent.h> 45#include <dirent.h>
@@ -535,7 +535,7 @@ static int readTarFile(const char* tarName, int extractFlag, int listFlag,
535 } 535 }
536 if ( skipNextHeaderFlag == TRUE ) { 536 if ( skipNextHeaderFlag == TRUE ) {
537 skipNextHeaderFlag=FALSE; 537 skipNextHeaderFlag=FALSE;
538 errorMsg(name_longer_then_foo, NAME_SIZE); 538 errorMsg(name_longer_than_foo, NAME_SIZE);
539 tarExtractRegularFile(&header, FALSE, FALSE); 539 tarExtractRegularFile(&header, FALSE, FALSE);
540 continue; 540 continue;
541 } 541 }
@@ -915,7 +915,7 @@ static int writeFileToTarball(const char *fileName, struct stat *statbuf, void*
915 } 915 }
916 916
917 if (strlen(fileName) >= NAME_SIZE) { 917 if (strlen(fileName) >= NAME_SIZE) {
918 errorMsg(name_longer_then_foo, NAME_SIZE); 918 errorMsg(name_longer_than_foo, NAME_SIZE);
919 return ( TRUE); 919 return ( TRUE);
920 } 920 }
921 921
@@ -1004,7 +1004,7 @@ static int writeTarFile(const char* tarName, int verboseFlag, char **argv,
1004 } 1004 }
1005 1005
1006 /* To be pedantically correct, we would check if the tarball 1006 /* To be pedantically correct, we would check if the tarball
1007 * is smaller then 20 tar blocks, and pad it if it was smaller, 1007 * is smaller than 20 tar blocks, and pad it if it was smaller,
1008 * but that isn't necessary for GNU tar interoperability, and 1008 * but that isn't necessary for GNU tar interoperability, and
1009 * so is considered a waste of space */ 1009 * so is considered a waste of space */
1010 1010