Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 51839
Collapse All | Expand All

(-)citadel/imap_misc.c (-2 / +2 lines)
Lines 250-256 Link Here
250
	IMAP->transmitted_length = literal_length;
250
	IMAP->transmitted_length = literal_length;
251
251
252
	cprintf("+ Transmit message now.\r\n");
252
	cprintf("+ Transmit message now.\r\n");
253
	lprintf(CTDL_DEBUG, "imap_append() expecting %d bytes\n",
253
	lprintf(CTDL_DEBUG, "imap_append() expecting %lu bytes\n",
254
		literal_length);
254
		literal_length);
255
255
256
	bytes_transferred = 0;
256
	bytes_transferred = 0;
Lines 266-272 Link Here
266
		else {
266
		else {
267
			bytes_transferred += blksize;		/* keep going */
267
			bytes_transferred += blksize;		/* keep going */
268
		}
268
		}
269
		lprintf(CTDL_DEBUG, "Received %d of %d bytes (%d%%)\n",
269
		lprintf(CTDL_DEBUG, "Received %lu of %lu bytes (%lu%%)\n",
270
			bytes_transferred,
270
			bytes_transferred,
271
			literal_length,
271
			literal_length,
272
			((bytes_transferred * 100) / literal_length)
272
			((bytes_transferred * 100) / literal_length)
(-)citadel/stress.c (-2 / +2 lines)
Lines 122-133 Link Here
122
	int c;		/* Message count */
122
	int c;		/* Message count */
123
	time_t start, end;	/* Timestamps */
123
	time_t start, end;	/* Timestamps */
124
	struct ctdlipcmessage msg;	/* The message we will post */
124
	struct ctdlipcmessage msg;	/* The message we will post */
125
	int argc_;
125
	long argc_;
126
	char** argv_;
126
	char** argv_;
127
	long tmin = LONG_MAX, trun = 0, tmax = LONG_MIN;
127
	long tmin = LONG_MAX, trun = 0, tmax = LONG_MIN;
128
128
129
	args = (void*)data;
129
	args = (void*)data;
130
	argc_ = (int)args[0];
130
	argc_ = (long)args[0];
131
	argv_ = (char**)args[1];
131
	argv_ = (char**)args[1];
132
132
133
	/* Setup the message we will be posting */
133
	/* Setup the message we will be posting */

Return to bug 51839