summaryrefslogtreecommitdiff
blob: ff6df66efacaea2a1e1a2955bf93a20146a1171b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
diff -Nru pppoed-0.49.orig/pppoed/lib.c pppoed-0.49/pppoed/lib.c
--- pppoed-0.49.orig/pppoed/lib.c	2005-04-16 19:10:50.000000000 +0300
+++ pppoed-0.49/pppoed/lib.c	2005-04-16 19:12:50.368792912 +0300
@@ -167,16 +167,14 @@
 		struct pppoe_tag *ac_htag;
 		ac_htag = find_tag(ses, ses->tags_len, ses->tags, TAG_HOST_UNIQ);
 		if (NULL == ac_htag) {
-			poe_error(ses, "Buggy AC: Contact your ISP please,
-			  we sent a host uniq tag but got none back: %m");
+			poe_error(ses, "Buggy AC: Contact your ISP please, we sent a host uniq tag but got none back: %m");
 		} else {
 			struct host_tag *tgs, *tgr;
 			tgs = (struct host_tag *) ses->filt->htag;
 			tgr = (struct host_tag *) ac_htag;
 			/* compare if it looks like ours */
 			if (tgr->id != tgs->id) {
-				poe_error(ses, "Buggy AC: Contact your ISP please,
-				  we sent a host-uniqid %d and received %d", tgs->id, tgr->id);
+				poe_error(ses, "Buggy AC: Contact your ISP please, we sent a host-uniqid %d and received %d", tgs->id, tgr->id);
 
 			}