aboutsummaryrefslogtreecommitdiffstats
path: root/openssl.c
diff options
context:
space:
mode:
authorLibravatarLibravatar William Ahern <william@william-aherns-macbook.local> 2013-01-30 21:55:41 -0800
committerLibravatarLibravatar William Ahern <william@william-aherns-macbook.local> 2013-01-30 21:55:41 -0800
commit705995f5d19aea40324b5f5c8031f6c39852e65c (patch)
treee139cc4c43d20b8b31658aa1c1b2d95f84facf5b /openssl.c
parent7cb2ff78a20b836defff9d845508c48a5b6f0344 (diff)
downloadluaossl-705995f5d19aea40324b5f5c8031f6c39852e65c.tar.gz
luaossl-705995f5d19aea40324b5f5c8031f6c39852e65c.tar.bz2
luaossl-705995f5d19aea40324b5f5c8031f6c39852e65c.zip
-n
forgot static qualifier for internal routine
Diffstat (limited to 'openssl.c')
-rw-r--r--openssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl.c b/openssl.c
index eed64cb..67883e6 100644
--- a/openssl.c
+++ b/openssl.c
@@ -237,7 +237,7 @@ static _Bool loadfield(lua_State *L, int index, const char *k, int type, void *p
} /* loadfield() */
-const char *pushnid(lua_State *L, int nid) {
+static const char *pushnid(lua_State *L, int nid) {
const char *txt;
ASN1_OBJECT *obj;
char buf[256];