remove upperstophy charactor, this makes query to terminate
authorjunsuk77.oh <junsuk77.oh@samsung.com>
Wed, 3 Jul 2013 02:00:01 +0000 (11:00 +0900)
committerAnas Nashif <anas.nashif@intel.com>
Wed, 25 Sep 2013 03:57:58 +0000 (23:57 -0400)
Change-Id: I54826dfe1f56c82350a3b301a4f5f723de99beb5
Signed-off-by: junsuk77.oh <junsuk77.oh@samsung.com>
packaging/app2sd.spec
plugin/app2sd/src/app2sd_internals_utils.c

index 7c1b404..a9d9205 100755 (executable)
@@ -1,6 +1,6 @@
 Name:       app2sd
 Summary:    Application installation on external memory
-Version:    0.5.20
+Version:    0.5.21
 Release:    1
 Group:      Application Framework/Application Installer
 License:    Apache-2.0
index aaf9c63..de537a3 100755 (executable)
@@ -37,7 +37,7 @@
 #include <errno.h>
 
 #define        PASSWD_LEN              8
-#define        ASCII_PASSWD_CHAR       94
+#define        ASCII_PASSWD_CHAR       93
 
 /*
 ########### Internal APIs ##################
@@ -479,7 +479,7 @@ char *_app2sd_generate_password(const char *pkgid)
 {
        char passwd[PASSWD_LEN+1] = { 0, };
        char *ret_result = NULL;
-       char set[ASCII_PASSWD_CHAR+1] = "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
+       char set[ASCII_PASSWD_CHAR+1] = "!\"#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~";
        unsigned char char_1;
        unsigned char char_2;
        int i = 0;