sgsn_libgtp.c: Log pointer of deleted context

Change-Id: I8a4627b54090e72f86a9c5a781670be52522062b
This commit is contained in:
Pau Espin 2018-07-09 20:42:20 +02:00
parent 322643f921
commit 80d407fc3f
1 changed files with 1 additions and 1 deletions

View File

@ -635,7 +635,7 @@ static int cb_conf(int type, int cause, struct pdp_t *pdp, void *cbp)
/* Called whenever a PDP context is deleted for any reason */
static int cb_delete_context(struct pdp_t *pdp)
{
LOGPDPX(DGPRS, LOGL_INFO, pdp, "Context was deleted\n");
LOGPDPX(DGPRS, LOGL_INFO, pdp, "Context %p was deleted\n", pdp);
return 0;
}