]> git.sur5r.net Git - bacula/bacula/commitdiff
Fix typos I introduced into bsmtp.c
authorKern Sibbald <kern@sibbald.com>
Tue, 24 Apr 2007 13:46:07 +0000 (13:46 +0000)
committerKern Sibbald <kern@sibbald.com>
Tue, 24 Apr 2007 13:46:07 +0000 (13:46 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4614 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/tools/bsmtp.c
bacula/technotes-2.1

index 05851b869fb1b5cfd58926febadcdc8517d4a184..862269c357956c07c32d03858d8a9f109626cfa5 100644 (file)
@@ -383,7 +383,7 @@ hp:
 
    for (i = 0; i < argc; i++) {
       Dmsg1(20, "rcpt to: %s\n", argv[i]);
-      if (strchr(from_addr, '<') == NULL) {
+      if (strchr(argv[i], '<') == NULL) {
          chat("rcpt to:<%s>\r\n", argv[i]);
       } else {
          chat("rcpt to:%s\r\n", argv[i]);
@@ -391,7 +391,7 @@ hp:
    }
 
    if (cc_addr) {
-      if (strchr(from_addr, '<') == NULL) {
+      if (strchr(cc_addr, '<') == NULL) {
          chat("rcpt to:<%s>\r\n", cc_addr);
       } else {
          chat("rcpt to:%s\r\n", cc_addr);
index b01917258cf46eea4291f53c3bec6bc047fc1d94..c8e75d903911e1305b08325638c58f8f345521ef 100644 (file)
@@ -2,6 +2,7 @@
 
 General:
 24Apr07
+kes  Fix typos I introduced into bsmtp.c
 kes  Make pm_strxxx() routines handle input of NULL pointer. This
      is to protect from NULL pointers returned from SQL databases.
 kes  Correct typo in bacula-sd manpage as pointed out by John Goerzen.