--- org.gridsite.core.orig/src/htproxyput.c	2012-11-10 16:14:01.000000000 +0100
+++ org.gridsite.core/src/htproxyput.c	2013-09-26 19:40:55.820705464 +0200
@@ -267,13 +267,13 @@
       ofp = fdopen(fd, "w");
       if (!ofp)
       {
-          printf(stderr, "Cannot open tmp file for the key\n");
+          fprintf(stderr, "Cannot open tmp file for the key\n");
           return 1;
       }
           
       ifp = fopen(key, "r");          
       {
-          printf(stderr, "Cannot open the file with the key\n");
+          fprintf(stderr, "Cannot open the file with the key\n");
           return 1;
       }
       while ((c = fgetc(ifp)) != EOF) fputc(c, ofp);          
@@ -281,7 +281,7 @@
           
       ifp = fopen(cert, "r");          
       {
-          printf(stderr, "Cannot open the file with the cert\n");
+          fprintf(stderr, "Cannot open the file with the cert\n");
           return 1;
       }
       while ((c = fgetc(ifp)) != EOF) fputc(c, ofp);          
