$OpenBSD: patch-src_init_c,v 1.1 2004/06/17 11:21:43 sturm Exp $
--- src/init.c.orig	2004-06-15 12:33:21.000000000 +0200
+++ src/init.c	2004-06-15 12:32:30.000000000 +0200
@@ -93,7 +93,7 @@ else 
    {
    if (statbuf.st_mode & 022)
       {
-      snprintf(OUTPUT,CF_BUFSIZE*2,"UNTRUSTED: State directory %s was not private!\n",VLOCKDIR,statbuf.st_mode & 0777);
+      snprintf(OUTPUT,CF_BUFSIZE*2,"UNTRUSTED: State directory %s was not private! (%o)\n",VLOCKDIR,statbuf.st_mode & 0777);
       CfLog(cferror,OUTPUT,"");
       }
    }
@@ -113,7 +113,7 @@ else 
    {
    if (statbuf.st_mode & 022)
       {
-      snprintf(OUTPUT,CF_BUFSIZE*2,"UNTRUSTED: Module directory %s was not private!\n",VLOCKDIR,statbuf.st_mode & 0777);
+      snprintf(OUTPUT,CF_BUFSIZE*2,"UNTRUSTED: Module directory %s was not private! (%o)\n",VLOCKDIR,statbuf.st_mode & 0777);
       CfLog(cferror,OUTPUT,"");
       }
    }
@@ -173,7 +173,7 @@ else
    {
    if (statbuf.st_mode & 077)
       {
-      snprintf(OUTPUT,CF_BUFSIZE*2,"UNTRUSTED: Private key directory %s/ppkeys was not private!\n",VLOCKDIR,statbuf.st_mode & 0777);
+      snprintf(OUTPUT,CF_BUFSIZE*2,"UNTRUSTED: Private key directory %s/ppkeys was not private! (%o)\n",VLOCKDIR,statbuf.st_mode & 0777);
       FatalError(OUTPUT);
       }
    }
