Changeset 60ab6c3 in mainline for uspace/srv/net/app/print_error.c
- Timestamp:
- 2010-03-10T05:46:54Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5782081
- Parents:
- 71b00dcc (diff), b48ebd19 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/app/print_error.c
r71b00dcc r60ab6c3 41 41 42 42 #include "print_error.h" 43 44 void print_error(FILE * output, int error_code, const char * prefix, const char * suffix){45 if(IS_ICMP_ERROR(error_code)){46 icmp_print_error(output, error_code, prefix, suffix);47 }else if(IS_SOCKET_ERROR(error_code)){48 socket_print_error(output, error_code, prefix, suffix);49 }50 }51 43 52 44 void icmp_print_error(FILE * output, int error_code, const char * prefix, const char * suffix){ … … 101 93 } 102 94 95 void print_error(FILE * output, int error_code, const char * prefix, const char * suffix){ 96 if(IS_ICMP_ERROR(error_code)){ 97 icmp_print_error(output, error_code, prefix, suffix); 98 }else if(IS_SOCKET_ERROR(error_code)){ 99 socket_print_error(output, error_code, prefix, suffix); 100 } 101 } 102 103 103 void socket_print_error(FILE * output, int error_code, const char * prefix, const char * suffix){ 104 104 if(output){
Note:
See TracChangeset
for help on using the changeset viewer.