X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=zpm-syncfs.c;h=06477f172563c84b4b9ec0f24d357481178e352f;hb=5757c77483cec69bb2122142a923040a87270416;hp=7422ece7a505cb59cff5afddc0ca154057d86880;hpb=078e743a920430f7975b3fecfd23f8070a0844a2;p=zpackage diff --git a/zpm-syncfs.c b/zpm-syncfs.c index 7422ece..06477f1 100644 --- a/zpm-syncfs.c +++ b/zpm-syncfs.c @@ -676,9 +676,13 @@ static int install(struct config *conf, struct nitem *item, unsigned int flags) printf("rmdir %s\n", item->dest); } - printf("install %c%o %d:%d %s\n", item->ftype, + printf("install %c%o %d:%d %s", item->ftype, item->mode, item->uid, item->gid, item->dest); + if (item->ftype == 'l') { + printf(" -> %s", item->target); + } + printf("\n"); fflush(stdout); return success; }