瀏覽代碼

fix UIDNEXT error message

Oswald Buddenhagen 5 年之前
父節點
當前提交
93fb3c29c6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/drv_imap.c

+ 1 - 1
src/drv_imap.c

@@ -1173,7 +1173,7 @@ parse_response_code( imap_store_t *ctx, imap_cmd_t *cmd, char *s )
 		if (!(arg = next_arg( &s )) ||
 		    (ctx->uidnext = strtoul( arg, &earg, 10 ), *earg))
 		{
-			error( "IMAP error: malformed NEXTUID status\n" );
+			error( "IMAP error: malformed UIDNEXT status\n" );
 			return RESP_CANCEL;
 		}
 	} else if (!strcmp( "CAPABILITY", arg )) {