Browse Source

Fixed ruri q printing bug reported by Juha.

Jan Janak 21 years ago
parent
commit
9bc5d9afc9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dset.c

+ 1 - 1
dset.c

@@ -211,7 +211,7 @@ char* print_dset(struct sip_msg* msg, int* len)
 		if (ruri_q != Q_UNSPECIFIED) {
 			memcpy(p, Q_PARAM, Q_PARAM_LEN);
 			p += Q_PARAM_LEN;
-			p += print_q(p, q);
+			p += print_q(p, ruri_q);
 		}
 		i = 1;
 	} else {