comparison src/neon/neon.c @ 2333:1a4f8ea5eb2a

small fixes.
author Yoshiki Yazawa <yaz@cc.rim.or.jp>
date Wed, 23 Jan 2008 09:56:48 +0900
parents 6ad2dffcad47
children c831816c0b87
comparison
equal deleted inserted replaced
2332:31754b406cd6 2333:1a4f8ea5eb2a
550 _LEAVE 1; 550 _LEAVE 1;
551 break; 551 break;
552 552
553 default: 553 default:
554 /* Something went wrong. */ 554 /* Something went wrong. */
555 _ERROR("<%p> Could not open URL: %d", ret); 555 _ERROR("<%p> Could not open URL: %d", handle, ret);
556 if (1 == ret) { 556 if (1 == ret) {
557 _ERROR("<%p> neon error string: %s", ne_get_error(handle->session)); 557 _ERROR("<%p> neon error string: %s", handle, ne_get_error(handle->session));
558 } 558 }
559 ne_request_destroy(handle->request); 559 ne_request_destroy(handle->request);
560 _LEAVE -1; 560 _LEAVE -1;
561 break; 561 break;
562 } 562 }