summaryrefslogtreecommitdiff
path: root/contrib/pgcrypto
diff options
context:
space:
mode:
authorAlvaro Herrera2011-11-17 21:35:07 +0000
committerAlvaro Herrera2011-11-17 21:35:07 +0000
commitef27c81d891da7c66740da305c7ec4e5bd584607 (patch)
tree98cdd94a2db6b8820a0c36af35aad9d45eddd848 /contrib/pgcrypto
parentb44dda715884487b92f14a0ea4addeaf163af802 (diff)
Don't quote language name
Same as previous patch, but give it actual thought this time
Diffstat (limited to 'contrib/pgcrypto')
-rw-r--r--contrib/pgcrypto/pgcrypto--1.0.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pgcrypto/pgcrypto--1.0.sql b/contrib/pgcrypto/pgcrypto--1.0.sql
index d95a51bc406..347825ea07d 100644
--- a/contrib/pgcrypto/pgcrypto--1.0.sql
+++ b/contrib/pgcrypto/pgcrypto--1.0.sql
@@ -61,7 +61,7 @@ LANGUAGE C IMMUTABLE STRICT;
CREATE FUNCTION gen_random_bytes(int4)
RETURNS bytea
AS 'MODULE_PATHNAME', 'pg_random_bytes'
-LANGUAGE 'C' VOLATILE STRICT;
+LANGUAGE C VOLATILE STRICT;
--
-- pgp_sym_encrypt(data, key)