Code reformatting
[dockapps/wmnotify.git] / src / pop3.c
index d9da74f..268647c 100644 (file)
@@ -23,8 +23,9 @@
 #include "pop3.h"
 
 
-static char tx_buffer[POP3_IN_BUF_SIZE];
-static char rx_buffer[POP3_IN_BUF_SIZE];
+/* Defined in network.c */
+extern char tx_buffer[WMNOTIFY_BUFSIZE + 1];
+extern char rx_buffer[WMNOTIFY_BUFSIZE + 1];
 
 
 static int
@@ -32,7 +33,7 @@ POP3_ReceiveResponse( void )
 {
   int len;
   
-  len = WmnotifyGetResponse( rx_buffer, POP3_IN_BUF_SIZE );
+  len = WmnotifyGetResponse( rx_buffer, WMNOTIFY_BUFSIZE );
   if( len < 0 ) {
     perror( PACKAGE );
     ErrorLocation( __FILE__, __LINE__ );