# HG changeset patch # User Ethan Blanton # Date 1069630362 0 # Node ID a83aaf25028476e00113fbe62f8c26d60a13d846 # Parent a4acf41898c177ce654a1abb079f00e4d88dd1de [gaim-migrate @ 8241] gaim-remote was the culprit ... Nathan and Luke found this at virtually the same time. Good job, guys. committer: Tailor Script diff -r a4acf41898c1 -r a83aaf250284 plugins/gaim-remote/remote.c --- a/plugins/gaim-remote/remote.c Sun Nov 23 22:55:41 2003 +0000 +++ b/plugins/gaim-remote/remote.c Sun Nov 23 23:32:42 2003 +0000 @@ -650,6 +650,7 @@ g_log(NULL, G_LOG_LEVEL_CRITICAL, "Failed to assign %s to a socket (Error: %s)", saddr.sun_path, strerror(errno)); + umask(m); return -1; } umask(m); diff -r a4acf41898c1 -r a83aaf250284 src/util.c --- a/src/util.c Sun Nov 23 22:55:41 2003 +0000 +++ b/src/util.c Sun Nov 23 23:32:42 2003 +0000 @@ -1225,11 +1225,6 @@ g_free(dir); return -1; } - /* For some reason, the above mkdir doesn't properly - * set permissions for some people ... and I have NO - * idea why not. In the meantime, we'll attempt to - * set them explicitly. */ - chmod(dir, mode); } g_strfreev(components);