search for: 8a60531

Displaying 2 results from an estimated 2 matches for "8a60531".

Did you mean: 060531
2011 Jun 11
1
isohybrid.c patch: to support hex parameters
...y, changing > sscanf(%u) -> sscanf(%i))? > I've made the changes to the current git repository and below is the patch(also attached) to fix this issue. Could you please have a look at it and sign off this change? === diff --git a/utils/isohybrid.c b/utils/isohybrid.c index 7ee9a7f..8a60531 100644 --- a/utils/isohybrid.c +++ b/utils/isohybrid.c @@ -108,6 +108,7 @@ printh(void) ?int ?check_option(int argc, char *argv[]) ?{ +??? char *err = NULL; ???? int n = 0, ind = 0; ? ???? const char optstr[] = ":h:s:e:o:t:i:fcp?vV"; @@ -135,32 +136,38 @@ check_option(int argc, char *argv...
2011 Aug 05
3
isolinux: Generate GPT and Mac bootable images
...isohdpfx.c: $(ISOHDPFX) isohdpfxarray.pl $(PERL) isohdpfxarray.pl $(ISOHDPFX) > $@ isohybrid: isohybrid.o isohdpfx.o - $(CC) $(LDFLAGS) -o $@ $^ + $(CC) $(LDFLAGS) -luuid -o $@ $^ gethostip: gethostip.o $(CC) $(LDFLAGS) -o $@ $^ diff --git a/utils/isohybrid.c b/utils/isohybrid.c index 8a60531..1dcbaa1 100644 --- a/utils/isohybrid.c +++ b/utils/isohybrid.c @@ -36,14 +36,19 @@ #include <unistd.h> #include <sys/stat.h> #include <inttypes.h> +#include <uuid/uuid.h> #include "isohybrid.h" char *prog = NULL; extern int opterr, optind; +struct stat i...