sgsn_libgtp.c: Fix typos and whitespace

Change-Id: Ic223cf378a83051603f58dacf087cc59d9f03890
diff --git a/src/gprs/sgsn_libgtp.c b/src/gprs/sgsn_libgtp.c
index ae293f1..4061e7a 100644
--- a/src/gprs/sgsn_libgtp.c
+++ b/src/gprs/sgsn_libgtp.c
@@ -587,7 +587,7 @@
 static int cb_recovery(struct sockaddr_in *peer, uint8_t recovery)
 {
 	struct sgsn_ggsn_ctx *ggsn;
-	
+
 	ggsn = sgsn_ggsn_ctx_by_addr(&peer->sin_addr);
 	if (!ggsn) {
 		LOGP(DGPRS, LOGL_NOTICE, "Received Recovery IE for unknown GGSN\n");
@@ -635,7 +635,7 @@
 /* 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 was deleted\n");
 
 	return 0;
 }
@@ -652,13 +652,13 @@
 /* Called when we receive a Supported Ext Headers Notification */
 static int cb_extheader_ind(struct sockaddr_in *peer)
 {
-	LOGP(DGPRS, LOGL_INFO, "GTP Supported Ext Headers Noficiation "
+	LOGP(DGPRS, LOGL_INFO, "GTP Supported Ext Headers Notification "
 		"from %s:%u\n", inet_ntoa(peer->sin_addr),
 		ntohs(peer->sin_port));
 	return 0;
 }
 
-/* Called whenever we recive a DATA packet */
+/* Called whenever we receive a DATA packet */
 static int cb_data_ind(struct pdp_t *lib, void *packet, unsigned int len)
 {
 	struct bssgp_paging_info pinfo;