diff --git a/glib/gspawn.c b/glib/gspawn.c index 388b654a6..1bf380fdf 100644 --- a/glib/gspawn.c +++ b/glib/gspawn.c @@ -797,7 +797,7 @@ exec_err_to_g_error (gint en) #ifdef E2BIG case E2BIG: - return G_SPAWN_ERROR_2BIG; + return G_SPAWN_ERROR_TOO_BIG; break; #endif diff --git a/glib/gspawn.h b/glib/gspawn.h index fe7785b37..bdac189e3 100644 --- a/glib/gspawn.h +++ b/glib/gspawn.h @@ -47,7 +47,8 @@ G_BEGIN_DECLS * @G_SPAWN_ERROR_CHDIR: Changing to working directory failed. * @G_SPAWN_ERROR_ACCES: execv() returned EACCES * @G_SPAWN_ERROR_PERM: execv() returned EPERM - * @G_SPAWN_ERROR_2BIG: execv() returned E2BIG + * @G_SPAWN_ERROR_TOO_BIG: execv() returned E2BIG + * @G_SPAWN_ERROR_2BIG: deprecated alias for %G_SPAWN_ERROR_TOO_BIG * @G_SPAWN_ERROR_NOEXEC: execv() returned ENOEXEC * @G_SPAWN_ERROR_NAMETOOLONG: execv() returned ENAMETOOLONG * @G_SPAWN_ERROR_NOENT: execv() returned ENOENT @@ -73,7 +74,10 @@ typedef enum G_SPAWN_ERROR_CHDIR, /* changing to working dir failed */ G_SPAWN_ERROR_ACCES, /* execv() returned EACCES */ G_SPAWN_ERROR_PERM, /* execv() returned EPERM */ - G_SPAWN_ERROR_2BIG, /* execv() returned E2BIG */ + G_SPAWN_ERROR_TOO_BIG,/* execv() returned E2BIG */ +#ifndef G_DISABLE_DEPRECATED + G_SPAWN_ERROR_2BIG = G_SPAWN_ERROR_TOO_BIG, +#endif G_SPAWN_ERROR_NOEXEC, /* execv() returned ENOEXEC */ G_SPAWN_ERROR_NAMETOOLONG, /* "" "" ENAMETOOLONG */ G_SPAWN_ERROR_NOENT, /* "" "" ENOENT */