diff options
author | 2013-01-30 21:55:41 -0800 | |
---|---|---|
committer | 2013-01-30 21:55:41 -0800 | |
commit | 705995f5d19aea40324b5f5c8031f6c39852e65c (patch) | |
tree | e139cc4c43d20b8b31658aa1c1b2d95f84facf5b | |
parent | 7cb2ff78a20b836defff9d845508c48a5b6f0344 (diff) | |
download | luaossl-705995f5d19aea40324b5f5c8031f6c39852e65c.tar.gz luaossl-705995f5d19aea40324b5f5c8031f6c39852e65c.tar.bz2 luaossl-705995f5d19aea40324b5f5c8031f6c39852e65c.zip |
-n
forgot static qualifier for internal routine
-rw-r--r-- | openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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]; |