Remove unneccessary printfs

This commit is contained in:
Joseph C. Lehner 2016-08-10 15:11:19 +02:00
parent e18ba2183d
commit f7bd9d5478

6
nmrp.c
View file

@ -609,11 +609,7 @@ int nmrp_do(struct nmrpd_args *args)
printf("Executing '%s' ... ", args->tftpcmd); printf("Executing '%s' ... ", args->tftpcmd);
fflush(stdout); fflush(stdout);
status = system(args->tftpcmd); status = system(args->tftpcmd);
if (!status) { printf("\n");
printf("OK\n");
} else {
printf("ERR\n");
}
} }
if (!status && args->file_local) { if (!status && args->file_local) {