Complete rewrite of the error code generation script. It now runs as a single
[openssl.git] / crypto / pkcs7 / sign.c
index 6ad88d468877ce6e6432442861eec2696d7871e1..ccdd6737dd9a6cd5b26b360f114f63735dc1cb5a 100644 (file)
@@ -56,9 +56,9 @@
  * [including the GNU Public Licence.]
  */
 #include <stdio.h>
-#include "bio.h"
-#include "x509.h"
-#include "pem.h"
+#include <openssl/bio.h>
+#include <openssl/x509.h>
+#include <openssl/pem.h>
 
 main(argc,argv)
 int argc;
@@ -110,8 +110,11 @@ again:
 
        /* Add some extra attributes */
        if (!add_signed_time(si)) goto err;
+#if 0
+       /* Since these are made up attributes lets leave them out */
        if (!add_signed_string(si,"SIGNED STRING")) goto err;
        if (!add_signed_seq2string(si,"STRING1","STRING2")) goto err;
+#endif
 
        /* we may want to add more */
        PKCS7_add_certificate(p7,x509);