diff options
-rw-r--r-- | Mailbox.c | 4 | ||||
-rw-r--r-- | MailboxP.h | 2 | ||||
-rw-r--r-- | Makefile.am | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -541,10 +541,10 @@ static void GetMailFile (MailboxWidget w) } #endif if ((mailpath = getenv("MAIL"))) { - w->mailbox.filename = (String) XtMalloc (strlen (mailpath) + 1); + w->mailbox.filename = XtMalloc (strlen (mailpath) + 1); strcpy (w->mailbox.filename, mailpath); } else { - w->mailbox.filename = (String) XtMalloc (strlen (MAILBOX_DIRECTORY) + 1 + w->mailbox.filename = XtMalloc (strlen (MAILBOX_DIRECTORY) + 1 + strlen (username) + 1); strcpy (w->mailbox.filename, MAILBOX_DIRECTORY); strcat (w->mailbox.filename, "/"); @@ -59,7 +59,7 @@ typedef struct { /* new fields for mailbox widget */ /* resources */ int update; /* seconds between updates */ Pixel foreground_pixel; /* color index of normal state fg */ - String filename; /* filename to watch */ + char *filename; /* filename to watch */ String check_command; /* command to exec for mail check */ Boolean flipit; /* do flip of full pixmap */ int volume; /* bell volume */ diff --git a/Makefile.am b/Makefile.am index 898a7ea..c55f53e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,7 +22,7 @@ SUBDIRS = man bin_PROGRAMS = xbiff -AM_CFLAGS = $(CWARNFLAGS) $(XBIFF_CFLAGS) -D_BSD_SOURCE +AM_CFLAGS = $(CWARNFLAGS) $(XBIFF_CFLAGS) -D_BSD_SOURCE -D_CONST_X_STRING xbiff_LDADD = $(XBIFF_LIBS) xbiff_SOURCES = \ |