aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ar.c3
-rw-r--r--archival/ar.c3
2 files changed, 0 insertions, 6 deletions
diff --git a/ar.c b/ar.c
index 5803ad1a7..adb6982b2 100644
--- a/ar.c
+++ b/ar.c
@@ -175,7 +175,6 @@ static headerL_t *getHeaders(int srcFd, headerL_t *head, int funct)
list = (headerL_t *) malloc(sizeof(headerL_t));
if (checkArMagic(srcFd)==TRUE) {
- printf("found ar header ");
while(readArEntry(srcFd, list) == TRUE) {
list->next = (headerL_t *) malloc(sizeof(headerL_t));
*list->next = *head;
@@ -187,8 +186,6 @@ static headerL_t *getHeaders(int srcFd, headerL_t *head, int funct)
lseek(srcFd, head->offset + head->size, SEEK_SET);
}
}
- else
- printf("not an ar header\n");
return(head);
}
diff --git a/archival/ar.c b/archival/ar.c
index 5803ad1a7..adb6982b2 100644
--- a/archival/ar.c
+++ b/archival/ar.c
@@ -175,7 +175,6 @@ static headerL_t *getHeaders(int srcFd, headerL_t *head, int funct)
list = (headerL_t *) malloc(sizeof(headerL_t));
if (checkArMagic(srcFd)==TRUE) {
- printf("found ar header ");
while(readArEntry(srcFd, list) == TRUE) {
list->next = (headerL_t *) malloc(sizeof(headerL_t));
*list->next = *head;
@@ -187,8 +186,6 @@ static headerL_t *getHeaders(int srcFd, headerL_t *head, int funct)
lseek(srcFd, head->offset + head->size, SEEK_SET);
}
}
- else
- printf("not an ar header\n");
return(head);
}