79f9f34775
fetchLastErrString. Hook xbps-fetch to the tree and use the new function to print errors. --HG-- extra : convert_revision : xtraeme%40gmail.com-20091030021303-6wu9sri5o8kgvfwl
23 lines
417 B
C
23 lines
417 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <xbps_api.h>
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
int rv = 0;
|
|
|
|
if (argc != 2) {
|
|
printf("Usage: xbps-fetch [options] URL\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
rv = xbps_fetch_file(argv[1], ".");
|
|
if (rv != 0) {
|
|
printf("xbps-fetch: couldn't download %s!\n", argv[1]);
|
|
printf("xbps-fetch: %s\n", xbps_fetch_error_string());
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
exit(EXIT_SUCCESS);
|
|
}
|