comparison src/pst2ldif.cpp @ 172:6954d315aaa8

move version-info into main configure.in, and set it properly. prefix all external symbols in the shared library with pst_ to avoid symbol clashes with other shared libraries.
author Carl Byington <carl@five-ten-sg.com>
date Sat, 04 Apr 2009 16:00:48 -0700
parents 252ad66d3d6e
children 0a4f7ecd7452
comparison
equal deleted inserted replaced
171:6c1e75bc4cac 172:6954d315aaa8
404 *p = 0; 404 *p = 0;
405 if (is_safe_string) { 405 if (is_safe_string) {
406 printf("%s: %s\n", attr, &buffer[0]); 406 printf("%s: %s\n", attr, &buffer[0]);
407 } 407 }
408 else { 408 else {
409 p = base64_encode(&buffer[0], buffer.size()); 409 p = pst_base64_encode(&buffer[0], buffer.size());
410 printf("%s:: %s\n", attr, p); 410 printf("%s:: %s\n", attr, p);
411 free(p); 411 free(p);
412 } 412 }
413 } 413 }
414 414