requester: Use the EID as the TID when we don't have the TID

We are doing this in other places, so for consistencies sake do it here
too.

Signed-off-by: Rashmica Gupta <rashmica@linux.ibm.com>
Change-Id: I94935561dd3871ba3b0b179b4311fafcb3bcb1b4
diff --git a/src/requester/pldm.c b/src/requester/pldm.c
index 7865cfe..fc7e782 100644
--- a/src/requester/pldm.c
+++ b/src/requester/pldm.c
@@ -64,7 +64,7 @@
 	do {                                                                     \
 		struct pldm_transport_mctp_demux *demux;                         \
 		bool using_open_transport = false;                               \
-		pldm_tid_t tid = 1;                                              \
+		pldm_tid_t tid = eid;                                            \
 		struct pldm_transport *ctx;                                      \
 		/* The fd can be for a socket we opened or one the consumer    \
 		 * opened. */ \