use DLSMS and not DSMS in SMPP related code (merge with master)
diff --git a/openbsc/src/libmsc/smpp_openbsc.c b/openbsc/src/libmsc/smpp_openbsc.c
index de8f36e..b19d739 100644
--- a/openbsc/src/libmsc/smpp_openbsc.c
+++ b/openbsc/src/libmsc/smpp_openbsc.c
@@ -91,7 +91,7 @@
 			     submit->dest_addr_ton,
 			     (const char *)submit->destination_addr);
 	if (!dest) {
-		LOGP(DSMS, LOGL_NOTICE, "SMPP SUBMIT-SM for unknown subscriber: "
+		LOGP(DLSMS, LOGL_NOTICE, "SMPP SUBMIT-SM for unknown subscriber: "
 		     "%s (NPI=%u)\n", submit->destination_addr,
 		     submit->dest_addr_npi);
 		return ESME_RINVDSTADR;
@@ -101,7 +101,7 @@
 	if (t) {
 		if (submit->sm_length) {
 			/* ERROR: we cannot have botH! */
-			LOGP(DSMS, LOGL_ERROR, "SMPP Cannot have payload in "
+			LOGP(DLSMS, LOGL_ERROR, "SMPP Cannot have payload in "
 				"TLV _and_ in the header\n");
 			return ESME_ROPTPARNOTALLWD;
 		}
@@ -171,7 +171,7 @@
 		sms->user_data_len = sms_msg_len;
 	} else {
 		sms_free(sms);
-		LOGP(DSMS, LOGL_ERROR, "SMPP Unknown Data Coding 0x%02x\n",
+		LOGP(DLSMS, LOGL_ERROR, "SMPP Unknown Data Coding 0x%02x\n",
 			submit->data_coding);
 		return ESME_RUNKNOWNERR;
 	}
@@ -202,18 +202,18 @@
 	case 3: /* store-and-forward */
 		rc = db_sms_store(sms);
 		if (rc < 0) {
-			LOGP(DSMS, LOGL_ERROR, "SMPP SUBMIT-SM: Unable to "
+			LOGP(DLSMS, LOGL_ERROR, "SMPP SUBMIT-SM: Unable to "
 				"store SMS in database\n");
 			sms_free(sms);
 			submit_r->command_status = ESME_RSYSERR;
 			return 0;
 		}
 		strcpy((char *)submit_r->message_id, "msg_id_not_implemented");
-		LOGP(DSMS, LOGL_INFO, "SMPP SUBMIT-SM: Stored in DB\n");
+		LOGP(DLSMS, LOGL_INFO, "SMPP SUBMIT-SM: Stored in DB\n");
 		rc = 0;
 		break;
 	case 2: /* forward (i.e. transaction) mode */
-		LOGP(DSMS, LOGL_DEBUG, "SMPP SUBMIT-SM: Forwarding in "
+		LOGP(DLSMS, LOGL_DEBUG, "SMPP SUBMIT-SM: Forwarding in "
 			"real time (Transaction/Forward mode)\n");
 		sms->smpp.transaction_mode = 1;
 		gsm411_send_sms_subscr(sms->receiver, sms);
@@ -241,7 +241,7 @@
 	case S_SMS_UNKNOWN_ERROR:
 		if (sms->smpp.transaction_mode) {
 			/* Send back the SUBMIT-SM response with apropriate error */
-			LOGP(DSMS, LOGL_INFO, "SMPP SUBMIT-SM: Error\n");
+			LOGP(DLSMS, LOGL_INFO, "SMPP SUBMIT-SM: Error\n");
 			rc = smpp_tx_submit_r(sms->smpp.esme,
 					      sms->smpp.sequence_nr,
 					      ESME_RDELIVERYFAILURE,
@@ -252,7 +252,7 @@
 		/* SMS layer tells us the delivery has been completed */
 		if (sms->smpp.transaction_mode) {
 			/* Send back the SUBMIT-SM response */
-			LOGP(DSMS, LOGL_INFO, "SMPP SUBMIT-SM: Success\n");
+			LOGP(DLSMS, LOGL_INFO, "SMPP SUBMIT-SM: Success\n");
 			rc = smpp_tx_submit_r(sms->smpp.esme,
 					      sms->smpp.sequence_nr,
 					      ESME_ROK, sms->smpp.msg_id);