]> Zhao Yanbai Git Server - minix.git/commitdiff
libexec: quiet 24/324/1
authorBen Gras <ben@minix3.org>
Sun, 10 Feb 2013 18:52:25 +0000 (19:52 +0100)
committerBen Gras <ben@minix3.org>
Sun, 10 Feb 2013 18:52:25 +0000 (19:52 +0100)
. harmless errors in the case of shell scripts

Change-Id: I461776024a21233e291102ca6d05dc7fa767f71a

lib/libexec/exec_elf.c

index 4645ec638532eff72fe40fa32390cee205ec4ffd..625b3f0873acc364f099ed27ad929fabdeda279a 100644 (file)
@@ -60,12 +60,10 @@ static int elf_unpack(char *exec_hdr,
 {
   *hdr = (Elf_Ehdr *) exec_hdr;
   if(!elf_sane(*hdr)) {
-       printf("elf_unpack: elf_sane failed\n");
        return ENOEXEC;
   }
   *phdr = (Elf_Phdr *)(exec_hdr + (*hdr)->e_phoff);
   if(!elf_ph_sane(*phdr)) {
-       printf("elf_unpack: elf_ph_sane failed\n");
        return ENOEXEC;
   }
 #if 0
@@ -135,7 +133,6 @@ int libexec_load_elf(struct exec_info *execi)
        assert(execi->hdr != NULL);
 
        if((e=elf_unpack(execi->hdr, execi->hdr_len, &hdr, &phdr)) != OK) {
-               printf("libexec_load_elf: elf_unpack failed\n");
                return e;
         }