From: Sean E. <sea...@us...> - 2002-08-25 10:51:25
|
Update of /cvsroot/gaim/gaim/plugins In directory usw-pr-cvs1:/tmp/cvs-serv7426/plugins Modified Files: notify.c Log Message: Who never commits anything *now*, Etan? I changed most of the error message text around. If you think any of it should be different, just let me know, or send a patch. Index: notify.c =================================================================== RCS file: /cvsroot/gaim/gaim/plugins/notify.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- notify.c 11 Aug 2002 06:43:23 -0000 1.11 +++ notify.c 25 Aug 2002 10:51:22 -0000 1.12 @@ -21,6 +21,7 @@ #include <X11/Xutil.h> #include <X11/Xatom.h> #include <gdk/gdkx.h> +#include <errno.h> guint choice = 1; #define NOTIFY_FOCUS 0x00000001 @@ -257,7 +258,7 @@ snprintf(buf, 1000, "%s/.gaim/.notify", getenv("HOME")); if (!(fp = fopen(buf, "w"))) { - do_error_dialog(_("Unable to write to config file"), _("Notify plugin")); + do_error_dialog(_("Unable to write notify plugin config file"), strerror(errno), GAIM_ERROR); return; } |