diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-12-11 20:21:27 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-12-11 20:21:27 +0000 |
commit | 10e41144596fc9ced40fc349d9ecd099b1c2ea19 (patch) | |
tree | 88ab04e475ff5a4cd889cb082f5760b6e0bf5e4e /ksysguard/ksysguardd/Tru64/NetDev.c | |
parent | 4aed2c8219774f5d797760606b8489a92ddc5163 (diff) | |
download | tdebase-10e41144596fc9ced40fc349d9ecd099b1c2ea19.tar.gz tdebase-10e41144596fc9ced40fc349d9ecd099b1c2ea19.zip |
Initial import of Trinity 3.5.11 to kdebase
Extends krandrtray, adds iccconfig kcontrol module, adds run dialog autocomplete and lots of bugfixes
Will need to check for commit warnings and repair as encountered
Also needs full compile test
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1061475 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksysguard/ksysguardd/Tru64/NetDev.c')
-rw-r--r-- | ksysguard/ksysguardd/Tru64/NetDev.c | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/ksysguard/ksysguardd/Tru64/NetDev.c b/ksysguard/ksysguardd/Tru64/NetDev.c index 0699b929a..a28c7ecf7 100644 --- a/ksysguard/ksysguardd/Tru64/NetDev.c +++ b/ksysguard/ksysguardd/Tru64/NetDev.c @@ -435,9 +435,9 @@ void printIPackets( const char *cmd ) { char *name, *ptr; int i; - ptr = strchr( cmdcopy, (int) '/' ); + ptr = (char*)strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = strchr( name, (int) '/' ); + ptr = (char*)strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -463,9 +463,9 @@ void printOPackets( const char *cmd ) { char *name, *ptr; int i; - ptr = strchr( cmdcopy, (int) '/' ); + ptr = (char*)strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = strchr( name, (int) '/' ); + ptr = (char*)strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -491,9 +491,9 @@ void printIErrors( const char *cmd ) { char *name, *ptr; int i; - ptr = strchr( cmdcopy, (int) '/' ); + ptr = (char*)strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = strchr( name, (int) '/' ); + ptr = (char*)strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -519,9 +519,9 @@ void printOErrors( const char *cmd ) { char *name, *ptr; int i; - ptr = strchr( cmdcopy, (int) '/' ); + ptr = (char*)strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = strchr( name, (int) '/' ); + ptr = (char*)strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -547,9 +547,9 @@ void printCollisions( const char *cmd ) { char *name, *ptr; int i; - ptr = strchr( cmdcopy, (int) '/' ); + ptr = (char*)strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = strchr( name, (int) '/' ); + ptr = (char*)strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -575,9 +575,9 @@ void printMultiXmits( const char *cmd ) { char *name, *ptr; int i; - ptr = strchr( cmdcopy, (int) '/' ); + ptr = (char*)strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = strchr( name, (int) '/' ); + ptr = (char*)strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -603,9 +603,9 @@ void printMultiRecvs( const char *cmd ) { char *name, *ptr; int i; - ptr = strchr( cmdcopy, (int) '/' ); + ptr = (char*)strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = strchr( name, (int) '/' ); + ptr = (char*)strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -631,9 +631,9 @@ void printBcastXmits( const char *cmd ) { char *name, *ptr; int i; - ptr = strchr( cmdcopy, (int) '/' ); + ptr = (char*)strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = strchr( name, (int) '/' ); + ptr = (char*)strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { @@ -659,9 +659,9 @@ void printBcastRecvs( const char *cmd ) { char *name, *ptr; int i; - ptr = strchr( cmdcopy, (int) '/' ); + ptr = (char*)strchr( cmdcopy, (int) '/' ); name = ++ptr; - ptr = strchr( name, (int) '/' ); + ptr = (char*)strchr( name, (int) '/' ); *ptr = '\0'; for( i = 0; i < NetDevCount; i++ ) { |