mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-07-02 19:22:47 -05:00
JavaScript format fix.
This commit is contained in:
6
script.c
6
script.c
@ -35,8 +35,8 @@ const SCRIPT_FORMAT supported_formats[] = {
|
||||
|
||||
#define header_hash "SIG # Begin signature block"
|
||||
#define footer_hash "SIG # End signature block"
|
||||
#define header_js "SIG // Begin signature block"
|
||||
#define footer_js "SIG // End signature block"
|
||||
#define header_js "Begin signature block"
|
||||
#define footer_js "End signature block"
|
||||
|
||||
typedef struct {
|
||||
const char *open, *close, *header, *footer;
|
||||
@ -46,7 +46,7 @@ const SCRIPT_COMMENT comment_text[] = {
|
||||
[comment_hash] = {"# ", "", header_hash, footer_hash},
|
||||
[comment_xml] = {"<!-- ", " -->", header_hash, footer_hash},
|
||||
[comment_c] = {"/* ", " */", header_hash, footer_hash},
|
||||
[comment_js] = {"// ", "", header_js, footer_js}
|
||||
[comment_js] = {"// SIG // ", "", header_js, footer_js}
|
||||
};
|
||||
|
||||
struct script_ctx_st {
|
||||
|
Reference in New Issue
Block a user