diff options
author | Miller Puckette <millerpuckette@users.sourceforge.net> | 2004-11-06 16:07:34 +0000 |
---|---|---|
committer | Miller Puckette <millerpuckette@users.sourceforge.net> | 2004-11-06 16:07:34 +0000 |
commit | 981f641ef44fe4d72dcb0e1248a2f96ba53cee69 (patch) | |
tree | d5871a901628db17e12e6204d13b4bdb4b8a07d9 /pd/src/s_file.c | |
parent | 5b0640e17d6db9e119d657fcadcf52ff317e704d (diff) |
0.38 test 9 (mostly bug fixes)
svn path=/trunk/; revision=2226
Diffstat (limited to 'pd/src/s_file.c')
-rw-r--r-- | pd/src/s_file.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/pd/src/s_file.c b/pd/src/s_file.c index ca0512fc..34992e01 100644 --- a/pd/src/s_file.c +++ b/pd/src/s_file.c @@ -84,9 +84,9 @@ static void sys_initloadpreferences( void) static int sys_getpreference(const char *key, char *value, int size) { + char searchfor[80], *where, *whereend; if (!sys_prefbuf) return (0); - char searchfor[80], *where, *whereend; sprintf(searchfor, "\n%s:", key); where = strstr(sys_prefbuf, searchfor); if (!where) @@ -157,7 +157,7 @@ static void sys_initloadpreferences( void) static int sys_getpreference(const char *key, char *value, int size) { - HKEY *hkey; + HKEY **hkey; DWORD bigsize = size; char *val2 = value; LONG err = RegOpenKeyEx(HKEY_LOCAL_MACHINE, @@ -192,7 +192,7 @@ static void sys_initsavepreferences( void) static void sys_putpreference(const char *key, const char *value) { - HKEY *hkey; + HKEY **hkey; LONG err = RegCreateKeyEx(HKEY_LOCAL_MACHINE, "Software\\Pd", 0, NULL, REG_OPTION_NON_VOLATILE, KEY_SET_VALUE, NULL, &hkey, NULL); @@ -223,7 +223,7 @@ static int sys_getpreference(const char *key, char *value, int size) { char cmdbuf[256]; int nread = 0, nleft = size; - snprintf(cmdbuf, 256, "defaults read com.ucsd.pd %s 2> /dev/null\n", key); + snprintf(cmdbuf, 256, "defaults read org.puredata.pd %s 2> /dev/null\n", key); FILE *fp = popen(cmdbuf, "r"); while (nread < size) { @@ -233,11 +233,13 @@ static int sys_getpreference(const char *key, char *value, int size) nread += newread; } pclose(fp); - if (!nread) + if (nread < 1) return (0); if (nread >= size) nread = size-1; value[nread] = 0; + if (value[nread-1] == '\n') /* remove newline character at end */ + value[nread-1] = 0; return(1); } @@ -253,7 +255,7 @@ static void sys_putpreference(const char *key, const char *value) { char cmdbuf[MAXPDSTRING]; snprintf(cmdbuf, MAXPDSTRING, - "defaults write com.ucsd.pd %s \"%s\" 2> /dev/null\n", key, value); + "defaults write org.puredata.pd %s \"%s\" 2> /dev/null\n", key, value); system(cmdbuf); } |