comparison src/noffle.c @ 366:fd66260b3479 noffle

[svn] fixed article cancelling (Debian #187068)
author godisch
date Tue, 01 Apr 2003 11:27:45 +0100
parents 1e595c7ec15f
children 21300895412f
comparison
equal deleted inserted replaced
365:33833f23bc13 366:fd66260b3479
8 not as server. If noffle runs as server, locking is performed while 8 not as server. If noffle runs as server, locking is performed while
9 executing NNTP commands, but temporarily released if no new command is 9 executing NNTP commands, but temporarily released if no new command is
10 received for some seconds (to allow multiple clients connect at the same 10 received for some seconds (to allow multiple clients connect at the same
11 time). 11 time).
12 12
13 $Id: noffle.c 454 2003-02-21 16:02:01Z bears $ 13 $Id: noffle.c 505 2003-04-01 10:27:45Z godisch $
14 */ 14 */
15 15
16 #if HAVE_CONFIG_H 16 #if HAVE_CONFIG_H
17 #include <config.h> 17 #include <config.h>
18 #endif 18 #endif
100 case CANCEL_NO_SUCH_MSG: 100 case CANCEL_NO_SUCH_MSG:
101 printf( "No such message '%s'.\n", msgId ); 101 printf( "No such message '%s'.\n", msgId );
102 break; 102 break;
103 103
104 case CANCEL_OK: 104 case CANCEL_OK:
105 printf( "Message '%s' cancelled.\n", msgId );
106 break; 105 break;
107 106
108 case CANCEL_NEEDS_MSG: 107 case CANCEL_NEEDS_MSG:
109 printf( "Message '%s' cancelled in local database only.\n", msgId ); 108 printf( "Message '%s' cancelled in local database only.\n", msgId );
110 break; 109 break;