]> granicus.if.org Git - file/commitdiff
113c113
authorIan Darwin <ian@darwinsys.com>
Fri, 11 Sep 1992 11:33:41 +0000 (11:33 +0000)
committerIan Darwin <ian@darwinsys.com>
Fri, 11 Sep 1992 11:33:41 +0000 (11:33 +0000)
<  ckfputs("dangling symbolic link", stdout);
---
>  printf("dangling symbolic link to %s", fn);

src/fsmagic.c

index 05b131a9e930f25dced284fb10f00653fdec2177..514a3819de9ca580d45e1b2945a91dd113bcdce1 100644 (file)
@@ -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;
                        }