comparison src/util.c @ 7617:a83aaf250284

[gaim-migrate @ 8241] gaim-remote was the culprit ... Nathan and Luke found this at virtually the same time. Good job, guys. committer: Tailor Script <tailor@pidgin.im>
author Ethan Blanton <elb@pidgin.im>
date Sun, 23 Nov 2003 23:32:42 +0000
parents 48d7eea88598
children 072feee65244
comparison
equal deleted inserted replaced
7616:a4acf41898c1 7617:a83aaf250284
1223 gaim_debug(GAIM_DEBUG_WARNING, "build_dir", "mkdir: %s\n", strerror(errno)); 1223 gaim_debug(GAIM_DEBUG_WARNING, "build_dir", "mkdir: %s\n", strerror(errno));
1224 g_strfreev(components); 1224 g_strfreev(components);
1225 g_free(dir); 1225 g_free(dir);
1226 return -1; 1226 return -1;
1227 } 1227 }
1228 /* For some reason, the above mkdir doesn't properly
1229 * set permissions for some people ... and I have NO
1230 * idea why not. In the meantime, we'll attempt to
1231 * set them explicitly. */
1232 chmod(dir, mode);
1233 } 1228 }
1234 1229
1235 g_strfreev(components); 1230 g_strfreev(components);
1236 g_free(dir); 1231 g_free(dir);
1237 return 0; 1232 return 0;