]> err.no Git - yubikey-personalization/commitdiff
change names of not exported functions
authorKlas Lindfors <klas@yubico.com>
Tue, 16 Apr 2013 13:26:26 +0000 (15:26 +0200)
committerKlas Lindfors <klas@yubico.com>
Tue, 16 Apr 2013 14:00:41 +0000 (16:00 +0200)
ykpers-json.c
ykpers-json.h
ykpers.c

index 43a50afd726878e3aa7b04e147d997d84187e2c0..f4985cc555cae70ecb6879d9d3b447da21f98130 100644 (file)
@@ -36,7 +36,7 @@
 #include <json/json.h>
 #include <string.h>
 
-int ykp_json_export_cfg(const YKP_CONFIG *cfg, char *json, size_t len) {
+int _ykp_json_export_cfg(const YKP_CONFIG *cfg, char *json, size_t len) {
        json_object *jobj = json_object_new_object();
        json_object *yprod_json = json_object_new_object();
        json_object *options_json = json_object_new_object();
@@ -164,7 +164,7 @@ int ykp_json_export_cfg(const YKP_CONFIG *cfg, char *json, size_t len) {
        return strlen(json);
 }
 
-int ykp_json_import_cfg(const char *json, size_t len, YKP_CONFIG *cfg) {
+int _ykp_json_import_cfg(const char *json, size_t len, YKP_CONFIG *cfg) {
        if(cfg) {
                json_object *jobj = json_tokener_parse(json);
                json_object *yprod_json = json_object_object_get(jobj, "yubiProdConfig");
index 5271be4cd3fbac0c65f283807d9f88917b06d199..9708b30fefd6bb1f24bb95added50374de26490f 100644 (file)
@@ -37,8 +37,8 @@
 extern "C" {
 # endif
 
-int ykp_json_export_cfg(const YKP_CONFIG *cfg, char *json, size_t len);
-int ykp_json_import_cfg(const char *json, size_t len, YKP_CONFIG *cfg);
+int _ykp_json_export_cfg(const YKP_CONFIG *cfg, char *json, size_t len);
+int _ykp_json_import_cfg(const char *json, size_t len, YKP_CONFIG *cfg);
 
 # ifdef __cplusplus
 }
index 510dbef5a8b144fca2756a06968d41a24f309a9b..18b36085f03ad40165723acc4adcf4f540f62520 100644 (file)
--- a/ykpers.c
+++ b/ykpers.c
@@ -851,7 +851,7 @@ static const char str_config_flags[] = "config_flags";
 static const char str_extended_flags[] = "extended_flags";
 
 
-static int ykp_legacy_export_config(const YKP_CONFIG *cfg, char *buf, size_t len) {
+static int _ykp_legacy_export_config(const YKP_CONFIG *cfg, char *buf, size_t len) {
        if (cfg) {
                char buffer[256];
                struct map_st *p;
@@ -997,9 +997,9 @@ static int ykp_legacy_export_config(const YKP_CONFIG *cfg, char *buf, size_t len
 int ykp_export_config(const YKP_CONFIG *cfg, char *buf, size_t len,
                int format) {
        if(format == YKP_FORMAT_YCFG) {
-               return ykp_json_export_cfg(cfg, buf, len);
+               return _ykp_json_export_cfg(cfg, buf, len);
        } else if(format == YKP_FORMAT_LEGACY) {
-               return ykp_legacy_export_config(cfg, buf, len);
+               return _ykp_legacy_export_config(cfg, buf, len);
        }
        ykp_errno = YKP_EINVAL;
        return 0;
@@ -1009,7 +1009,7 @@ int ykp_export_config(const YKP_CONFIG *cfg, char *buf, size_t len,
 int ykp_import_config(const char *buf, size_t len, YKP_CONFIG *cfg,
                int format) {
        if(format == YKP_FORMAT_YCFG) {
-               return ykp_json_import_cfg(buf, len, cfg);
+               return _ykp_json_import_cfg(buf, len, cfg);
        } else if(format == YKP_FORMAT_LEGACY) {
                ykp_errno = YKP_ENOTYETIMPL;
        }
@@ -1022,7 +1022,7 @@ int ykp_write_config(const YKP_CONFIG *cfg,
                     void *userdata) {
        if(cfg) {
                char buffer[1024];
-               int ret = ykp_legacy_export_config(cfg, buffer, 1024);
+               int ret = _ykp_legacy_export_config(cfg, buffer, 1024);
                if(ret) {
                        writer(buffer, strlen(buffer), userdata);
                        return 1;