Changeset 549
- Timestamp:
- 08/04/08 15:51:31 (8 months ago)
- Files:
-
- 1 modified
-
trunk/storage/authreg_pipe.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/storage/authreg_pipe.c
r545 r549 126 126 } 127 127 128 if(ap_base64decode_len(&buf[3], -1) >= 256) {128 if(ap_base64decode_len(&buf[3], strlen(&buf[3])) >= 256) { 129 129 log_debug(ZONE, "decoded password longer than buffer"); 130 130 return 1; 131 131 } 132 132 133 ap_base64decode(password, &buf[3], -1);133 ap_base64decode(password, &buf[3], strlen(&buf[3])); 134 134 135 135 log_debug(ZONE, "got password: %s", password);
