Check-in [49fcda9f97]
Overview
Comment:Added ifdef around CAN, needed for RHEL5
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 49fcda9f9758f5aafd05b8873a5a278b3a469cdf
User & Date: rkeene on 2016-03-30 03:04:19
Other Links: manifest | tags
Context
2016-06-22
19:27
TUAPI 0.6 check-in: bad649153c user: rkeene tags: trunk, 0.6
2016-03-30
03:04
Added ifdef around CAN, needed for RHEL5 check-in: 49fcda9f97 user: rkeene tags: trunk
2015-05-17
04:16
Implemented "rmmod" check-in: 20d82b1585 user: rkeene tags: trunk
Changes

Modified tuapi.c from [a8bc74d0c2] to [830624e5bc].

1285
1286
1287
1288
1289
1290
1291

1292
1293
1294

1295
1296
1297
1298
1299
1300
1301
				break;
			case ARPHRD_X25:
				link_encap = "x25";
				break;
			case ARPHRD_HWX25:
				link_encap = "hwx25";
				break;

			case ARPHRD_CAN:
				link_encap = "can";
				break;

			case ARPHRD_PPP:
				link_encap = "ppp";
				break;
			case ARPHRD_CISCO:
				link_encap = "cisco";
				break;
			case ARPHRD_LAPB:







>



>







1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
				break;
			case ARPHRD_X25:
				link_encap = "x25";
				break;
			case ARPHRD_HWX25:
				link_encap = "hwx25";
				break;
#ifdef ARPHRD_CAN
			case ARPHRD_CAN:
				link_encap = "can";
				break;
#endif
			case ARPHRD_PPP:
				link_encap = "ppp";
				break;
			case ARPHRD_CISCO:
				link_encap = "cisco";
				break;
			case ARPHRD_LAPB: