jgarzik enthusiastically applies a patch

This commit is contained in:
Jeff Garzik 1999-01-20 21:21:24 +00:00
parent e4199bbcaf
commit e0015d5a27
10 changed files with 52 additions and 4 deletions

View File

@ -1,3 +1,9 @@
Wed Jan 20 16:16:01 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* gutils.c (g_get_any_init):
Revert previous patch, move error value set line down to proper
place. Caught by Elliot Lee <sopwith@redhat.com>.
Wed Jan 20 20:48:58 GMT 1999 Adam D. Moss <adam@gimp.org>
* gutils.c (g_get_any_init): All gtk apps were broken

View File

@ -1,3 +1,9 @@
Wed Jan 20 16:16:01 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* gutils.c (g_get_any_init):
Revert previous patch, move error value set line down to proper
place. Caught by Elliot Lee <sopwith@redhat.com>.
Wed Jan 20 20:48:58 GMT 1999 Adam D. Moss <adam@gimp.org>
* gutils.c (g_get_any_init): All gtk apps were broken

View File

@ -1,3 +1,9 @@
Wed Jan 20 16:16:01 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* gutils.c (g_get_any_init):
Revert previous patch, move error value set line down to proper
place. Caught by Elliot Lee <sopwith@redhat.com>.
Wed Jan 20 20:48:58 GMT 1999 Adam D. Moss <adam@gimp.org>
* gutils.c (g_get_any_init): All gtk apps were broken

View File

@ -1,3 +1,9 @@
Wed Jan 20 16:16:01 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* gutils.c (g_get_any_init):
Revert previous patch, move error value set line down to proper
place. Caught by Elliot Lee <sopwith@redhat.com>.
Wed Jan 20 20:48:58 GMT 1999 Adam D. Moss <adam@gimp.org>
* gutils.c (g_get_any_init): All gtk apps were broken

View File

@ -1,3 +1,9 @@
Wed Jan 20 16:16:01 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* gutils.c (g_get_any_init):
Revert previous patch, move error value set line down to proper
place. Caught by Elliot Lee <sopwith@redhat.com>.
Wed Jan 20 20:48:58 GMT 1999 Adam D. Moss <adam@gimp.org>
* gutils.c (g_get_any_init): All gtk apps were broken

View File

@ -1,3 +1,9 @@
Wed Jan 20 16:16:01 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* gutils.c (g_get_any_init):
Revert previous patch, move error value set line down to proper
place. Caught by Elliot Lee <sopwith@redhat.com>.
Wed Jan 20 20:48:58 GMT 1999 Adam D. Moss <adam@gimp.org>
* gutils.c (g_get_any_init): All gtk apps were broken

View File

@ -1,3 +1,9 @@
Wed Jan 20 16:16:01 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* gutils.c (g_get_any_init):
Revert previous patch, move error value set line down to proper
place. Caught by Elliot Lee <sopwith@redhat.com>.
Wed Jan 20 20:48:58 GMT 1999 Adam D. Moss <adam@gimp.org>
* gutils.c (g_get_any_init): All gtk apps were broken

View File

@ -1,3 +1,9 @@
Wed Jan 20 16:16:01 EST 1999 Jeff Garzik <jgarzik@pobox.com>
* gutils.c (g_get_any_init):
Revert previous patch, move error value set line down to proper
place. Caught by Elliot Lee <sopwith@redhat.com>.
Wed Jan 20 20:48:58 GMT 1999 Adam D. Moss <adam@gimp.org>
* gutils.c (g_get_any_init): All gtk apps were broken

View File

@ -452,10 +452,10 @@ g_get_any_init (void)
pw = getpwuid_r (getuid (), &pwd, buffer, bufsize);
if (pw)
break;
error = errno;
# endif /* HAVE_GETPWUID_R_POSIX */
error = errno;
if (error != ERANGE)
g_warning( "Could not read account information: %s",
g_error ("Could not read account information: %s",
g_strerror (error));
bufsize *= 2;
}

View File

@ -452,10 +452,10 @@ g_get_any_init (void)
pw = getpwuid_r (getuid (), &pwd, buffer, bufsize);
if (pw)
break;
error = errno;
# endif /* HAVE_GETPWUID_R_POSIX */
error = errno;
if (error != ERANGE)
g_warning( "Could not read account information: %s",
g_error ("Could not read account information: %s",
g_strerror (error));
bufsize *= 2;
}