From: Ian Darwin Date: Fri, 11 Sep 1992 11:33:41 +0000 (+0000) Subject: 113c113 X-Git-Tag: FILE3_27~231 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d3e6bc4989b25f83d3a440356960d459214bd99a;p=file 113c113 < ckfputs("dangling symbolic link", stdout); --- > printf("dangling symbolic link to %s", fn); --- diff --git a/src/fsmagic.c b/src/fsmagic.c index 05b131a9..514a3819 100644 --- a/src/fsmagic.c +++ b/src/fsmagic.c @@ -46,7 +46,7 @@ #ifndef lint static char *moduleid = - "@(#)$Id: fsmagic.c,v 1.16 1992/09/08 15:36:42 ian Exp $"; + "@(#)$Id: fsmagic.c,v 1.17 1992/09/11 11:33:41 ian Exp $"; #endif /* lint */ int @@ -110,7 +110,7 @@ struct stat *sb; /* If dangling symlink, say so and quit early. */ if (stat(buf, &tstatbuf) < 0) { - ckfputs("dangling symbolic link", stdout); + printf("dangling symbolic link to %s", fn); return 1; }