Make consistent with style(msmith). 4 spaces indent, tab for each 2 indents.
This commit is contained in:
parent
1f43095400
commit
92931013f6
@ -68,8 +68,8 @@ vpipe(const char *fmt, ...)
|
||||
|
||||
rp = malloc(MAXPATHLEN);
|
||||
if (!rp) {
|
||||
warnx("vpipe can't alloc buffer space");
|
||||
return NULL;
|
||||
warnx("vpipe can't alloc buffer space");
|
||||
return NULL;
|
||||
}
|
||||
maxargs = sysconf(_SC_ARG_MAX);
|
||||
maxargs -= 32; /* some slop for the sh -c */
|
||||
|
@ -170,7 +170,7 @@ Boolean fexists(const char *);
|
||||
Boolean isdir(const char *);
|
||||
Boolean isemptydir(const char *fname);
|
||||
Boolean isemptyfile(const char *fname);
|
||||
Boolean isfile(const char *);
|
||||
Boolean isfile(const char *);
|
||||
Boolean isempty(const char *);
|
||||
Boolean issymlink(const char *);
|
||||
Boolean isURL(const char *);
|
||||
|
@ -480,7 +480,7 @@ delete_package(Boolean ign_err, Boolean nukedirs, Package *pkg)
|
||||
/* Mismatch? */
|
||||
if (strcmp(cp, p->next->name + 4)) {
|
||||
warnx("'%s' fails original MD5 checksum - %s",
|
||||
tmp, Force ? "deleted anyway." : "not deleted.");
|
||||
tmp, Force ? "deleted anyway." : "not deleted.");
|
||||
if (!Force) {
|
||||
fail = FAIL;
|
||||
continue;
|
||||
|
@ -99,13 +99,13 @@ fileGetURL(const char *base, const char *spec, int keep_package)
|
||||
strcpy(fname, spec);
|
||||
|
||||
if (keep_package) {
|
||||
tmp = getenv("PKGDIR");
|
||||
tmp = getenv("PKGDIR");
|
||||
strlcpy(pkg, tmp ? tmp : ".", sizeof(pkg));
|
||||
tmp = basename(fname);
|
||||
strlcat(pkg, "/", sizeof(pkg));
|
||||
strlcat(pkg, tmp, sizeof(pkg));
|
||||
if ((pkgfd = open(pkg, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1) {
|
||||
printf("Error: Unable to open %s\n", pkg);
|
||||
if ((pkgfd = open(pkg, O_WRONLY|O_CREAT|O_TRUNC, 0644)) == -1) {
|
||||
printf("Error: Unable to open %s\n", pkg);
|
||||
perror("open");
|
||||
return NULL;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user