Changeset 9b46b64
- Timestamp:
- 2006-06-20T22:05:04Z (18 years ago)
- Branches:
- master
- Children:
- 2b14eef
- Parents:
- ece2cd2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
storage_xml.c
rece2cd2 r9b46b64 137 137 prpl = find_protocol( protocol ); 138 138 139 if( !handle || !password )139 if( !handle || !password || !protocol ) 140 140 g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, 141 141 "Missing attributes for %s element", element_name ); 142 142 else if( !prpl ) 143 143 g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, 144 " Missing or unknown protocol %s element", element_name);144 "Unknown protocol: %s", protocol ); 145 145 else 146 146 {
Note: See TracChangeset
for help on using the changeset viewer.